From cbc8a5d4687caee3d1cc00200ca016a3dffa0f13 Mon Sep 17 00:00:00 2001 From: Pierre De Rop Date: Tue, 30 Apr 2024 12:13:08 +0200 Subject: [PATCH] Fix Authors attribute (#3214) Currently, authors are declared in two places: in docs/modules/ROOT/pages/about-doc.adoc: authors are declared in the Multiple authors line, in the start page (about-adoc.adoc). Authors are then displayed when browsing antora documentation (in the start page). in antora.yml, using an author attribute: this was attempt to make the authors also appearing in the front page of the generated pdf. But the authors are not currently included in the front page of the PDF. this PR moves the author attribute from the antora attributes to the asciidoc attributes in the antora.yml, and this fixes the problem: authors are now displayed in the front page of the generated PDF. --- docs/antora.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/antora.yml b/docs/antora.yml index c6425ae1cf..900cd88ee9 100644 --- a/docs/antora.yml +++ b/docs/antora.yml @@ -2,9 +2,6 @@ name: reactor-netty version: true title: Reactor Netty Reference Guide start_page: about-doc.adoc -author: - - Stephane Maldini - - Violeta Georgieva nav: - modules/ROOT/nav.adoc ext: @@ -28,3 +25,6 @@ asciidoc: http-source-link: '{reactor-netty-github-repo}/reactor-netty-http/src/main/java' javadoc: 'https://projectreactor.io/docs/netty/{project-version}/api' nettyjavadoc: 'https://netty.io/4.1/api' + author: + - Stephane Maldini + - Violeta Georgieva