Hello This is Markdown file
How are you?
#This is not Markdown text since it has a whitespace before "This"
Another text.
<h1>Highlighting syntax</h1>
End of file has been reach.
var MarkdownIt = require("markdown-it"),
md = new MarkdownIt();
const syntaxHighlight = (input) => {};
const textToPMd = (input) => {
return md.render(input);
};
module.exports = {
textToPMd
};