You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I create a util function that uses commonmark to convert markdown to HTML. And then I tried to write a test case for that function, it throws error saying that commonmark is not defined.
const markdownToHtml = (text) => {
const reader = new commonmark.Parser();
const writer = new commonmark.HtmlRenderer({safe: true});
const parsed = reader.parse(text); // parsed is a 'Node' tree
// transform parsed if you like...
const result = writer.render(parsed); // result is a String
return result;
};
module.exports = {markdownToHtml};
I get the following error when I run the test: ReferenceError: commonmark is not defined
The text was updated successfully, but these errors were encountered:
I create a util function that uses commonmark to convert markdown to HTML. And then I tried to write a test case for that function, it throws error saying that
commonmark
is not defined.Here is my code:
markdown.test.js
markdown.js
I get the following error when I run the test:
ReferenceError: commonmark is not defined
The text was updated successfully, but these errors were encountered: