This file is indexed.

/usr/share/xml/xhtml-relaxng/modules/meta.rng is in xhtml-relaxng 20131210+dfsg+1-6.

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
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Meta Module -->
<grammar xmlns="http://relaxng.org/ns/structure/1.0">

<define name="meta">
  <element name="meta">
    <ref name="meta.attlist"/>
  </element>
</define>

<define name="meta.attlist">
  <ref name="I18n.attrib"/>
  <optional>
    <attribute name="http-equiv">
      <ref name="NMTOKEN.datatype"/>
    </attribute>
  </optional>
  <optional>
    <attribute name="name">
      <ref name="NMTOKEN.datatype"/>
    </attribute>
  </optional>
  <optional>
    <attribute name="content"/>
  </optional>
  <optional>
    <attribute name="scheme"/>
  </optional>
</define>

<define name="head.content" combine="interleave">
  <zeroOrMore>
    <ref name="meta"/>
  </zeroOrMore>
</define>

</grammar>