Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save pietroppeter/73cd18185adf94f08bb11d096590cca3 to your computer and use it in GitHub Desktop.
Save pietroppeter/73cd18185adf94f08bb11d096590cca3 to your computer and use it in GitHub Desktop.
import markdown
import std / strutils
echo markdown("""
```nim
echo "hello"
```*
""".replace('*', ' '), config=initGfmConfig())
#[
<pre><code class="language-nim">echo &quot;hello&quot;
```
</code></pre>
]#
echo markdown("""
```nim
echo "hello"
```
""", config=initGfmConfig())
#[
<pre><code class="language-nim">echo &quot;hello&quot;
</code></pre>
]#
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment