{"ScriptPreparationCode":"var conv = {\r\n showdown: new showdown.Converter(),\r\n marked: marked,\r\n cm: new commonmark.HtmlRenderer(),\r\n mdit: markdownit({ html: true }),\r\n remarkable: new remarkable.Remarkable(),\r\n micromarkdown: window.micromarkdown,\r\n snarkdown: window.snarkdown\r\n};\r\n\r\nvar pars = {\r\n cm: new commonmark.Parser()\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. With it we are *able to talk* about the things we love.\\n\\nOnline publishing platform have a problem though - they [require](https://1993.uk) certain software to be installed on web servers in order to work. This often means running your own server or paying someone else who will setup the [required](https://1993.uk) parts for you.\\n\\nAfter you setup the system, constant updates are required to make sure that any bugs in the software you are running are patched [immediately](https://1993.uk) to prevent your *site* from being hacked. This __often means__ having a recent backup of your data\u0022,\r\n \u0022\u0022].join(\u0022\\n\u0022);","TestCases":[{"Name":"Showdown.js","Code":"conv.showdown.makeHtml(md);","IsDeferred":false},{"Name":"Marked","Code":"conv.marked(md);","IsDeferred":false},{"Name":"CommonMark","Code":"conv.cm.render(pars.cm.parse(md));","IsDeferred":false},{"Name":"Markdown-it","Code":"conv.mdit.render(md);","IsDeferred":false},{"Name":"Remarkable","Code":"conv.remarkable.render(md);","IsDeferred":false},{"Name":"Micromarkdown","Code":"conv.micromarkdown.parse(md);","IsDeferred":false},{"Name":"Snarkdown","Code":"conv.snarkdown(md);","IsDeferred":false}]}