<div dir="ltr"><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><br class="gmail_msg">
That's IMHO why Markdown would be the best solution for README files.<br class="gmail_msg"></blockquote><div><br></div><div>I am a big fan of Markdown. How much support is needed? If we only want to be able to have code snippets, I wrote a really lightweight JavaScript library to parse text and syntax highlight blocks of code like this:</div><div><br></div><div>```sh</div><div>#!/bin/sh</div>slackpkg_update_only() {<br>  slackpkg update gpg<br>  slackpkg update<br> }<br>```</div><div class="gmail_quote"><br></div><div class="gmail_quote">It ends up looking something like the attached image.<img src="cid:1583b73024b9eb2f8251" alt="Screenshot at 2016-11-06 13:00:26.png" class="" style="max-width: 100%; opacity: 1;"></div><div class="gmail_quote"><br></div><div class="gmail_quote"><a href="https://github.com/ryanpcmcquen/codeFormatter">https://github.com/ryanpcmcquen/codeFormatter</a><br></div><div class="gmail_quote"><br></div><div class="gmail_quote">If we only need code snippet support, this may be easier to integrate than a full fledged markdown parser (if people are even onboard with that).</div></div>