This file is indexed.

/usr/lib/ruby/1.8/rd/rd2html-ext-opt.rb is in librd-html-ext-ruby1.8 0.1.4-1.

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
#!/usr/bin/env ruby
require 'rd/rd2html-opt'

q = ARGV.options

q.on_tail("--ref-extension") do
  $Visitor.opt_ref_extension = true
end

q.on_tail("--headline-title") do
  $Visitor.opt_headline_title = true
end

q.on_tail("--headline-secno") do
  $Visitor.opt_headline_secno = true
end

q.on_tail("--enable-br") do
  $Visitor.opt_enable_br = true
end

q.on_tail("--native-inline") do
  $Visitor.opt_native_inline = true
end

q.on_tail("--head-element") do
  $Visitor.opt_head_element = true
end