diff options
author | Adrian Likins <alikins@redhat.com> | 2016-07-29 21:59:35 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-29 21:59:35 +0200 |
commit | 6fdd8c4a989d3deb9e0bb07d77b4c74d43bcc879 (patch) | |
tree | ec1035ea780be81c0822eea73088368f607e8d95 /docs/man | |
parent | Merge pull request #16418 from alikins/docs-api (diff) | |
download | ansible-6fdd8c4a989d3deb9e0bb07d77b4c74d43bcc879.tar.xz ansible-6fdd8c4a989d3deb9e0bb07d77b4c74d43bcc879.zip |
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.
Diffstat (limited to 'docs/man')
-rw-r--r-- | docs/man/man1/ansible-doc.1.asciidoc.in | 2 | ||||
-rw-r--r-- | docs/man/man1/ansible-playbook.1.asciidoc.in | 2 | ||||
-rw-r--r-- | docs/man/man1/ansible-pull.1.asciidoc.in | 2 | ||||
-rw-r--r-- | docs/man/man1/ansible.1.asciidoc.in | 1 |
4 files changed, 3 insertions, 4 deletions
diff --git a/docs/man/man1/ansible-doc.1.asciidoc.in b/docs/man/man1/ansible-doc.1.asciidoc.in index f46db17b60..2b1f2678d9 100644 --- a/docs/man/man1/ansible-doc.1.asciidoc.in +++ b/docs/man/man1/ansible-doc.1.asciidoc.in @@ -1,6 +1,6 @@ ansible-doc(1) ============== -:doctype:manpage +:doctype: manpage :man source: Ansible :man version: %VERSION% :man manual: System administration commands diff --git a/docs/man/man1/ansible-playbook.1.asciidoc.in b/docs/man/man1/ansible-playbook.1.asciidoc.in index aed13b8938..3360c0d454 100644 --- a/docs/man/man1/ansible-playbook.1.asciidoc.in +++ b/docs/man/man1/ansible-playbook.1.asciidoc.in @@ -1,6 +1,6 @@ ansible-playbook(1) =================== -:doctype:manpage +:doctype: manpage :man source: Ansible :man version: %VERSION% :man manual: System administration commands diff --git a/docs/man/man1/ansible-pull.1.asciidoc.in b/docs/man/man1/ansible-pull.1.asciidoc.in index 42d08d8296..d2211553be 100644 --- a/docs/man/man1/ansible-pull.1.asciidoc.in +++ b/docs/man/man1/ansible-pull.1.asciidoc.in @@ -1,6 +1,6 @@ ansible(1) ========= -:doctype:manpage +:doctype: manpage :man source: Ansible :man version: %VERSION% :man manual: System administration commands diff --git a/docs/man/man1/ansible.1.asciidoc.in b/docs/man/man1/ansible.1.asciidoc.in index b7b564ad90..ca3ad8f404 100644 --- a/docs/man/man1/ansible.1.asciidoc.in +++ b/docs/man/man1/ansible.1.asciidoc.in @@ -1,6 +1,5 @@ ansible(1) ========= -:doctype:manpage :man source: Ansible :man version: %VERSION% :man manual: System administration commands |