From 0bfe0b7541ce88de42a46417d9ea331adb9c6152 Mon Sep 17 00:00:00 2001 From: Sylwester Lachiewicz Date: Fri, 7 Aug 2026 11:44:31 +0200 Subject: [PATCH] Restore the document metadata dropped when the pages were ported An APT document opens with a header block giving its title, authors and date, and doxia-converter turns that into YAML front matter. The port removed the front matter along with the converter's per-line licence comments, so the generated pages lost their author and date meta tags, and took their title from the first heading rather than from the document title. The front matter has to come first in the file: the Markdown parser only looks for it when the source begins with "---". A licence header ahead of it would hide it, and RAT is happy either way. --- src/site/markdown/index.md.vm | 7 +++++++ src/site/markdown/usage.md | 7 +++++++ 2 files changed, 14 insertions(+) diff --git a/src/site/markdown/index.md.vm b/src/site/markdown/index.md.vm index 68131e6..498458a 100644 --- a/src/site/markdown/index.md.vm +++ b/src/site/markdown/index.md.vm @@ -1,3 +1,10 @@ +--- +title: Introduction +author: + - Olivier Lamy +date: 2013-07-24 +--- +