This file is indexed.

/usr/share/bluefish/bflang/highlighter.bflang2 is in bluefish-data 2.2.7-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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<?xml version="1.0" encoding="UTF-8"?>
<!--
		Bluefish HTML Editor
		Highlighter.bflang2 $Revision: 6206 $
 
		Copyright (C) 2008-2010 Olivier Sessink

		This program is free software; you can redistribute it and/or modify
		it under the terms of the GNU General Public License as published by
		the Free Software Foundation; either version 2 of the License, or
		(at your option) any later version.

		This program is distributed in the hope that it will be useful,
		but WITHOUT ANY WARRANTY; without even the implied warranty of
		MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
		GNU General Public License for more details.

		You should have received a copy of the GNU General Public License
		along with this program; if not, write to the Free Software
		Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.		
-->

<!-- 
Snippets for the Highlighter are avaible at:
http://bfwiki.tellefsen.net/index.php/Highlighter_snippets
 -->
 
<bflang name="Highlighter" version="2.0" table ="15" contexts="2" matches ="4"   
>

<header>
	<mime type="text/highlight"/>
	<option name="load_completion" default="1"/>
	<option name="show_in_menu" default="0"/>
	<highlight name="red" style="warning"  />
	<highlight name="green" style="string"  />
	<highlight name="blue" style="value"  />
	<highlight name="yellow" style="special-tag3"  />	
	<highlight name="grey" style="comment"  />
</header>

<definition>


<context symbols="&gt;&lt;">

<element id="e.red" pattern="&lt;r&gt;" highlight="grey" starts_block="1">
	<context id="c.red" symbols="&gt;&lt;" highlight="red">
	<element pattern="&lt;/r&gt;" ends_block="1" blockstartelement="e.red" highlight="grey" ends_context="1" />
	</context>
</element>

<element id="e.green" pattern="&lt;g&gt;" highlight="grey" starts_block="1">
	<context id="c.green" symbols="&gt;&lt;" highlight="green">
	<element pattern="&lt;/g&gt;" ends_block="1" blockstartelement="e.green" highlight="grey" ends_context="1" />
	</context>
</element>


<element id="e.blue" pattern="&lt;b&gt;" highlight="grey" starts_block="1">
	<context id="c.blue" symbols="&gt;&lt;" highlight="blue">
	<element pattern="&lt;/b&gt;" ends_block="1" blockstartelement="e.blue" highlight="grey" ends_context="1" />
	</context>
</element>

<element id="e.yellow" pattern="&lt;y&gt;" highlight="grey" starts_block="1">
	<context id="c.yellow" symbols="&gt;&lt;" highlight="yellow">
	<element pattern="&lt;/y&gt;" ends_block="1" blockstartelement="e.yellow" highlight="grey" ends_context="1" />
	</context>
</element>

	</context>



</definition>

</bflang>