2017-01-26 01:13:44 +01:00
|
|
|
require 'asciidoctor'
|
|
|
|
require 'asciidoctor/extensions'
|
|
|
|
|
|
|
|
module Git
|
|
|
|
module Documentation
|
|
|
|
class LinkGitProcessor < Asciidoctor::Extensions::InlineMacroProcessor
|
|
|
|
use_dsl
|
|
|
|
|
|
|
|
named :chrome
|
|
|
|
|
|
|
|
def process(parent, target, attrs)
|
|
|
|
if parent.document.basebackend? 'html'
|
|
|
|
prefix = parent.document.attr('git-relative-html-prefix')
|
asciidoctor-extensions: fix spurious space after linkgit
When we render, e.g., "linkgit:gitglossary[7]." with Asciidoctor, we get
"gitglossary(7) ." with a space between the linkgit macro expansion and
the punctuation. We can fix this by dropping the trailing newline after
we've turned `linkgit:foo[bar]` into `<citerefentry>..</citerefentry>`.
The diff produced by `USE_ASCIIDOCTOR=Yes ./doc-diff HEAD^ HEAD` is
almost 6000 lines large and shows how this fixes "git-foo(x) ,", "(see
git-bar(y) )" and so on. One might wonder whether this also turns, e.g.,
"see linkgit:foo[1] for more" into "see foo(1)for more", but no. We get
"...</citerefentry> for more" in the XML, see, e.g., git-am.xml, so the
space ends up in git-am.1 just fine. The same is true for the HTML output.
Signed-off-by: Martin Ågren <martin.agren@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2019-02-27 19:17:54 +01:00
|
|
|
%(<a href="#{prefix}#{target}.html">#{target}(#{attrs[1]})</a>)
|
2017-01-26 01:13:44 +01:00
|
|
|
elsif parent.document.basebackend? 'docbook'
|
|
|
|
"<citerefentry>\n" \
|
|
|
|
"<refentrytitle>#{target}</refentrytitle>" \
|
|
|
|
"<manvolnum>#{attrs[1]}</manvolnum>\n" \
|
asciidoctor-extensions: fix spurious space after linkgit
When we render, e.g., "linkgit:gitglossary[7]." with Asciidoctor, we get
"gitglossary(7) ." with a space between the linkgit macro expansion and
the punctuation. We can fix this by dropping the trailing newline after
we've turned `linkgit:foo[bar]` into `<citerefentry>..</citerefentry>`.
The diff produced by `USE_ASCIIDOCTOR=Yes ./doc-diff HEAD^ HEAD` is
almost 6000 lines large and shows how this fixes "git-foo(x) ,", "(see
git-bar(y) )" and so on. One might wonder whether this also turns, e.g.,
"see linkgit:foo[1] for more" into "see foo(1)for more", but no. We get
"...</citerefentry> for more" in the XML, see, e.g., git-am.xml, so the
space ends up in git-am.1 just fine. The same is true for the HTML output.
Signed-off-by: Martin Ågren <martin.agren@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2019-02-27 19:17:54 +01:00
|
|
|
"</citerefentry>"
|
2017-01-26 01:13:44 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
Asciidoctor::Extensions.register do
|
|
|
|
inline_macro Git::Documentation::LinkGitProcessor, :linkgit
|
|
|
|
end
|