Skip to content

Instantly share code, notes, and snippets.

@joyeusenoelle
joyeusenoelle / Mastodon.md
Last active September 23, 2025 15:15
An increasingly less-brief introduction to Mastodon
@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`