{"ScriptPreparationCode":"var pars = {\r\n cm: new commonmark.Parser(), // cm.parse(\u0022\u0022)\r\n marked: marked, // marked.lexer(\u0022\u0022)\r\n mdit: markdownit(), // mdit.parse(\u0022\u0022, {})\r\n remarkable: new remarkable.Remarkable() // remarkable.parse(\u0022\u0022)\r\n};\r\n\r\nvar md = \u0022# The Static, Static Blog Generator\\n\\n### May 17th, 2014\\n\\nWe all like publishing our thoughts online - but why is it such a bother to run a CMS?\\n\\nManaging databases, \u0060updating\u0060 software, and keeping track of our *content* often cuts into the most important activity: *expressing ourselves*.\\n\\nThe web makes it really __easy to share__ our thoughts with millions of __individuals__ from around the world.\u0022;","TestCases":[{"Name":"Marked","Code":"pars.marked.lexer(md);","IsDeferred":false},{"Name":"Markdown-it","Code":"pars.mdit.parse(md, {});","IsDeferred":false},{"Name":"Remarkable","Code":"pars.remarkable.parse(md, {});","IsDeferred":false},{"Name":"CommonMark","Code":"pars.cm.parse(md);","IsDeferred":false}]}