-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathChangeXref.rb
49 lines (38 loc) · 1.2 KB
/
ChangeXref.rb
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
40
41
42
43
44
45
46
47
48
49
require 'asciidoctor'
require 'asciidoctor/extensions'
class ChangeXref < Asciidoctor::Extensions::Preprocessor
RX = /xref:.*#/
SUB = "xref:"
REFTEX = /\[.*\]/
SUBREFTEX = "[]"
# https://github.com/asciidoctor/asciidoctor-extensions-lab/issues/64
def process document, reader
# puts "ChangeXref"
Asciidoctor::PreprocessorReader.new document, reader.lines.map {|line|
line = (line.include? 'xref:') ? (line.gsub RX, SUB) : line
line
}
end
end
class XrefIncludeProcessor < Asciidoctor::Extensions::IncludeProcessor
def handles? target
(target.start_with? 'docs/de/modules') or (target.start_with? 'docs/en/modules')
end
RX = /xref:.*#/
SUB = "xref:"
def process doc, reader, target, attributes
# puts "XrefIncludeProcessor"
content = (open target).readlines.map do |line|
line = line.force_encoding('utf-8')
line = (line.include? 'xref:') ? (line.gsub RX, SUB) : line
line
end
content = content.join('').force_encoding('utf-8')
reader = reader.push_include content, target, target, 1, attributes
reader
end
end
Asciidoctor::Extensions.register do
preprocessor ChangeXref
include_processor XrefIncludeProcessor
end