mirror of
https://github.com/git/git
synced 2024-11-04 16:17:49 +00:00
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
2 changed files with 137 additions and 247 deletions
|
@ -9,8 +9,11 @@ module Git
|
|||
named :chrome
|
||||
|
||||
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>)
|
||||
elsif parent.document.basebackend? 'docbook'
|
||||
"<citerefentry>\n" \
|
||||
|
|
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue