This file is indexed.

/usr/share/gtksourceview-2.0/language-specs/mallard.lang is in libgtksourceview2.0-common 2.10.5-1ubuntu2.

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
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<?xml version="1.0" encoding="UTF-8"?>
<!--
 Author: Milo Casagrande <milo@ubuntu.com>
 Copyright (C) 2009 Milo Casagrande <milo@ubuntu.com>

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

 This library 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
 Library General Public License for more details.

 You should have received a copy of the GNU Library General Public
 License along with this library; if not, write to the
 Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 Boston, MA 02111-1307, USA.
-->
<language id="mallard" _name="Mallard" version="2.0" _section="Markup">

  <metadata>
    <property name="globs">*.page</property>
    <property name="block-comment-start">&lt;!--</property>
    <property name="block-comment-end">--&gt;</property>
  </metadata>

  <styles>
    <style id="page"    _name="Page Elements"    map-to="def:identifier"/>
    <style id="section" _name="Section Elements" map-to="def:identifier"/>
    <style id="block"   _name="Block Elements"   map-to="def:identifier"/>
    <style id="inline"  _name="Inline Elements"  map-to="def:identifier"/>
  </styles>

<definitions>

  <context id="page-element" once-only="true" style-ref="page" class="no-spell-check">
    <keyword>page</keyword>
  </context>

  <context id="section-element" style-ref="section" class="no-spell-check">
    <keyword>section</keyword>
  </context>

  <context id="block-elements" style-ref="block" class="no-spell-check">
    <keyword>code</keyword>
    <keyword>p</keyword>
    <keyword>example</keyword>
    <keyword>screen</keyword>
    <keyword>media</keyword>
    <keyword>comment</keyword>
    <keyword>figure</keyword>
    <keyword>listing</keyword>
    <keyword>note</keyword>
    <keyword>quote</keyword>
    <keyword>synopsis</keyword>
    <keyword>list</keyword>
    <keyword>steps</keyword>
    <keyword>terms</keyword>
    <keyword>tree</keyword>
    <keyword>table</keyword>
    <keyword>col</keyword>
    <keyword>colgroup</keyword>
    <keyword>tr</keyword>
    <keyword>td</keyword>
    <keyword>item</keyword>
  </context>

  <context id="inline-elements" style-ref="inline" class="no-spell-check">
    <keyword>app</keyword>
    <keyword>cmd</keyword>
    <keyword>code</keyword>
    <keyword>em</keyword>
    <keyword>file</keyword>
    <keyword>gui</keyword>
    <keyword>guiseq</keyword>
    <keyword>input</keyword>
    <keyword>key</keyword>
    <keyword>keyseq</keyword>
    <keyword>link</keyword>
    <keyword>media</keyword>
    <keyword>output</keyword>
    <keyword>span</keyword>
    <keyword>sys</keyword>
    <keyword>var</keyword>
    <keyword>info</keyword>
    <keyword>credit</keyword>
    <keyword>name</keyword>
    <keyword>email</keyword>
    <keyword>copyright</keyword>
    <keyword>year</keyword>
    <keyword>license</keyword>
    <keyword>desc</keyword>
    <keyword>link</keyword>
    <keyword>revision</keyword>
    <keyword>title</keyword>
    <keyword>subtitle</keyword>
    <keyword>desc</keyword>
    <keyword>cite</keyword>
  </context>

  <context id="mallard-tags">
    <include>
      <context ref="page-element"/>
      <context ref="section-element"/>
      <context ref="block-elements"/>
      <context ref="inline-elements"/>
      <context ref="xml:element-name" original="true"/>
    </include>
  </context>

  <replace id="xml:element-name" ref="mallard-tags"/>

  <context id="mallard">
    <include>
      <context ref="xml:xml"/>
    </include>
  </context>
</definitions>

</language>