This file is indexed.

/usr/share/source-highlight/docbook.outlang is in libsource-highlight-common 3.1.8-1.2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
# 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
"&" "&amp;"
"<" "&lt;"
">" "&gt;"
end