From c3e270f4eeda70396b5af8dc01ac2a7234f098b9 Mon Sep 17 00:00:00 2001 From: Filipe Brandenburger Date: Wed, 2 Jan 2019 14:16:34 -0800 Subject: docs: add a "front matter" snippet to our markdown pages It turns out Jekyll (the engine behind GitHub Pages) requires that pages include a "Front Matter" snippet of YAML at the top for proper rendering. Omitting it will still render the pages, but including it opens up new possibilities, such as using a {% for %} loop to generate index.md instead of requiring a separate script. I'm hoping this will also fix the issue with some of the pages (notably CODE_OF_CONDUCT.html) not being available under systemd.io Tested locally by rendering the website with Jekyll. Before this change, the *.md files were kept unchanged (so not sure how that even works?!), after this commit, proper *.html files were generated from it. --- docs/TRANSLATORS.md | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'docs/TRANSLATORS.md') diff --git a/docs/TRANSLATORS.md b/docs/TRANSLATORS.md index 9c45453083..d155c1c875 100644 --- a/docs/TRANSLATORS.md +++ b/docs/TRANSLATORS.md @@ -1,3 +1,7 @@ +--- +title: Notes for Translators +--- + # Notes for Translators systemd depends on the `gettext` package for multilingual support. -- cgit v1.2.1