Merge branch 'ma/user-manual-markup-update'
The markup used in user-manual has been updated to work better with asciidoctor. * ma/user-manual-markup-update: user-manual.txt: render ASCII art correctly under Asciidoctor asciidoctor-extensions.rb: handle "book" doctype in linkgit user-manual.txt: change header notation user-manual.txt: add missing section label
This commit is contained in:
commit
b0f8aed48f
@ -9,8 +9,11 @@ module Git
|
|||||||
named :chrome
|
named :chrome
|
||||||
|
|
||||||
def process(parent, target, attrs)
|
def process(parent, target, attrs)
|
||||||
if parent.document.basebackend? 'html'
|
|
||||||
prefix = parent.document.attr('git-relative-html-prefix')
|
prefix = parent.document.attr('git-relative-html-prefix')
|
||||||
|
if parent.document.doctype == 'book'
|
||||||
|
"<ulink url=\"#{prefix}#{target}.html\">" \
|
||||||
|
"#{target}(#{attrs[1]})</ulink>"
|
||||||
|
elsif parent.document.basebackend? 'html'
|
||||||
%(<a href="#{prefix}#{target}.html">#{target}(#{attrs[1]})</a>)
|
%(<a href="#{prefix}#{target}.html">#{target}(#{attrs[1]})</a>)
|
||||||
elsif parent.document.basebackend? 'docbook'
|
elsif parent.document.basebackend? 'docbook'
|
||||||
"<citerefentry>\n" \
|
"<citerefentry>\n" \
|
||||||
|
File diff suppressed because it is too large
Load Diff
Loading…
x
Reference in New Issue
Block a user