Skip to content

Instantly share code, notes, and snippets.

How to contact me

After some stalking problems I stopped using these accounts. I will repost when I have new info.

<div class="disqus-comments">
<button id="show-comments" class="btn btn-default" type="button">Show <span class="disqus-comment-count" data-disqus-url="{{ trim .Permalink "/" }}">comments</span></button>
<div id="disqus_thread"></div>
</div>
@lebarde
lebarde / md2htmlyaml
Last active April 30, 2018 04:02
Convert Markdown to HTML and leave the YAML verbatim (to use in Hugo)
#!/bin/sh
# This script converts a .md Markdown file into a HTML file.
# It takes advantage of Pandoc for that, but keeps the front
# matter verbatim in order to process it into Hugo.
# tmp file:
TMP=`mktemp`