37 lines
734 B
Plaintext
37 lines
734 B
Plaintext
# by Stuart Rackham
|
|
# http://www.methods.co.nz/asciidoc/source-highlight-filter.html
|
|
|
|
extension "xml"
|
|
|
|
bold "<emphasis role=\"strong\">$text</emphasis>"
|
|
italics "<emphasis>$text</emphasis>"
|
|
|
|
anchor "<anchor id=\"line$linenum\"/>$text"
|
|
postline_reference "<link linkend='line$linenum'>$text -> $linenum</link>"
|
|
postdoc_reference "<link linkend='line$linenum'>$text -> $linenum</link>"
|
|
reference "<link linkend='line$linenum'>$text</link>"
|
|
|
|
doctemplate
|
|
"<!DOCTYPE article PUBLIC \"-//OASIS//DTD DocBook//EN\">
|
|
<article>
|
|
<articleinfo>
|
|
<title>$title</title>
|
|
</articleinfo>
|
|
<programlisting>"
|
|
"</programlisting>
|
|
</article>
|
|
"
|
|
end
|
|
|
|
nodoctemplate
|
|
"<programlisting>"
|
|
"</programlisting>
|
|
"
|
|
end
|
|
|
|
translations
|
|
"&" "&"
|
|
"<" "<"
|
|
">" ">"
|
|
end
|