diff options
author | Jelle van der Waa <jelle@vdwaa.nl> | 2018-09-09 21:02:43 +0200 |
---|---|---|
committer | Levente Polyak <anthraxx@archlinux.org> | 2018-09-09 21:02:43 +0200 |
commit | 05c81038e5d01962221e5fe2901813dbfba0f864 (patch) | |
tree | 968c4f00edf4ffb3c8ef45709bc3d60baa07a8cf /doc/asciidoc.conf | |
parent | 6364b3c9b9fae2b43bf3e02b9e84c814fc3f502f (diff) | |
download | devtools32-05c81038e5d01962221e5fe2901813dbfba0f864.tar.xz |
doc: Add lddd man page
Diffstat (limited to 'doc/asciidoc.conf')
-rw-r--r-- | doc/asciidoc.conf | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/doc/asciidoc.conf b/doc/asciidoc.conf new file mode 100644 index 0000000..c675a20 --- /dev/null +++ b/doc/asciidoc.conf @@ -0,0 +1,37 @@ +## linkman: macro +# Inspired by/borrowed from the GIT source tree at Documentation/asciidoc.conf +# +# Usage: linkman:command[manpage-section] +# +# Note, {0} is the manpage section, while {target} is the command. +# +# Show man link as: <command>(<section>); if section is defined, else just show +# the command. + +[macros] +(?su)[\\]?(?P<name>linkman):(?P<target>\S*?)\[(?P<attrlist>.*?)\]= + +[attributes] +asterisk=* +plus=+ +caret=^ +startsb=[ +endsb=] +backslash=\ +tilde=~ +apostrophe=' +backtick=` +litdd=-- + +ifdef::backend-docbook[] +[linkman-inlinemacro] +{0%{target}} +{0#<citerefentry>} +{0#<refentrytitle>{target}</refentrytitle><manvolnum>{0}</manvolnum>} +{0#</citerefentry>} +endif::backend-docbook[] + +ifdef::backend-xhtml11[] +[linkman-inlinemacro] +<a href="{target}.{0}.html">{target}{0?({0})}</a> +endif::backend-xhtml11[] |