From 4cf5120e471ec835d16808b2ae852e4325dce7e0 Mon Sep 17 00:00:00 2001 From: isamu arimoto Date: Mon, 27 Sep 2021 13:38:24 +0900 Subject: [PATCH] docs: typo in node.md (#3285) Fixed mhchem sample code that didn't work --- docs/node.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/node.md b/docs/node.md index 8be06e12..cecc489a 100644 --- a/docs/node.md +++ b/docs/node.md @@ -95,5 +95,5 @@ mhchem in Node as follows: ```js const katex = require('katex'); require('katex/dist/contrib/mhchem.js'); // modify katex module -const html = katex.renderToString('\\ce{CO2 + C -> 2 C0}"); +const html = katex.renderToString('\\ce{CO2 + C -> 2 C0}'); ```