Fix the doctype attribute in man page asciidocs (#16696)
The asciidoc.in sources had an attribute like: :doctype:manpage That attribute was not being correctly rendered in a2x resulting in the 'doctype:manpage' showing up in a spurious additional AUTHOR section at the end of the generated man pages like: AUTHOR :doctype:manpage Fix with correct formatting of 'doctype' attribute.
This commit is contained in:
parent
e0318f752d
commit
6fdd8c4a98
4 changed files with 3 additions and 4 deletions
|
@ -1,6 +1,6 @@
|
|||
ansible-doc(1)
|
||||
==============
|
||||
:doctype:manpage
|
||||
:doctype: manpage
|
||||
:man source: Ansible
|
||||
:man version: %VERSION%
|
||||
:man manual: System administration commands
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
ansible-playbook(1)
|
||||
===================
|
||||
:doctype:manpage
|
||||
:doctype: manpage
|
||||
:man source: Ansible
|
||||
:man version: %VERSION%
|
||||
:man manual: System administration commands
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
ansible(1)
|
||||
=========
|
||||
:doctype:manpage
|
||||
:doctype: manpage
|
||||
:man source: Ansible
|
||||
:man version: %VERSION%
|
||||
:man manual: System administration commands
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
ansible(1)
|
||||
=========
|
||||
:doctype:manpage
|
||||
:man source: Ansible
|
||||
:man version: %VERSION%
|
||||
:man manual: System administration commands
|
||||
|
|
Loading…
Reference in a new issue