From c79bb1d16bf17e1a0198df172c52df974de47d3b Mon Sep 17 00:00:00 2001 From: Sylwester Lachiewicz Date: Fri, 7 Aug 2026 11:41:09 +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/examples/configureplugin.md.vm | 7 +++++++ src/site/markdown/index.md | 7 +++++++ src/site/markdown/usage.md.vm | 7 +++++++ 3 files changed, 21 insertions(+) diff --git a/src/site/markdown/examples/configureplugin.md.vm b/src/site/markdown/examples/configureplugin.md.vm index 3a689d0..f0b4568 100644 --- a/src/site/markdown/examples/configureplugin.md.vm +++ b/src/site/markdown/examples/configureplugin.md.vm @@ -1,3 +1,10 @@ +--- +title: Configuring Source Plugin +author: + - Maria Odea Ching +date: 11 July 2006 +--- +