blob: 1fbc996150973d22d5925f92ed405cb0e8a115ea (
plain) (
blame)
1
2
3
4
5
6
7
8
|
Asciidoctor::Extensions.register do
inline_macro :pagenum do
format :short
process do |parent|
create_inline parent, :quoted, parent.document.converter.page_number.to_s
end
end
end
|