From 743c3bf2914640de6aa24f421124bb51a14453e2 Mon Sep 17 00:00:00 2001 From: Alexander Kriegisch Date: Thu, 15 Feb 2024 19:34:26 +0700 Subject: [PATCH] Avoid "Last updated [timestamp]" footer on each docs page Set Asciidoctor option 'nofooter' to avoid the annoying timestamps. It makes updating the website difficult, because always there are "changes" in each file. Diffing real changes in generated files for the website before committing becomes difficult. Furthermore, the user does not have any immediate benefit for most documents, as they change infrequently or never (e.g. old release notes). Signed-off-by: Alexander Kriegisch --- docs/pom.xml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/pom.xml b/docs/pom.xml index dcaae9f2d..b69a68108 100644 --- a/docs/pom.xml +++ b/docs/pom.xml @@ -29,6 +29,10 @@ ${project.basedir} true true + + + true + -- 2.39.5