blob: c33a50dce5c0a5de6ebae0d7ac19bf398d93e038 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
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'
generate_html(parent, target, attrs)
elsif parent.document.basebackend? 'docbook'
generate_docbook(parent, target, attrs)
end
end
private
def generate_html(parent, target, attrs)
section = attrs.has_key?(1) ? "(#{attrs[1]})" : ''
prefix = parent.document.attr('git-relative-html-prefix') || ''
%(<a href="#{prefix}#{target}.html">#{target}#{section}</a>\n)
end
def generate_docbook(parent, target, attrs)
%(<citerefentry>
<refentrytitle>#{target}</refentrytitle><manvolnum>#{attrs[1]}</manvolnum>
</citerefentry>
)
end
end
end
end
Asciidoctor::Extensions.register do
inline_macro Git::Documentation::LinkGitProcessor, :linkgit
end
|