This file is indexed.

/usr/share/lyx/layouts/logicalmkup.module is in lyx-common 2.2.2-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
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
#\DeclareLyXModule{Logical Markup}
#DescriptionBegin
#Defines some character styles for logical markup: noun, emph, strong, and code.
#DescriptionEnd
#Category: charstyles

# Author : Martin vermeer <martin.vermeer@hut.fi>

Format 60

InsetLayout Flex:Noun
	LyxType               charstyle
	LabelString           noun
	LatexType             command
	LatexName             noun
	Font
	  Shape               Smallcaps
	EndFont
	Requires              noun
	InToc                 true
	HTMLTag               span
	HTMLAttr              class='noun'
	HTMLStyle
		span.noun {
			font-family: sans-serif;
		}
	EndHTMLStyle
	ResetsFont true
End


InsetLayout Flex:Emph
	LyxType               charstyle
	LabelString           emph
	LatexType             command
	LatexName             emph
	Font
	  Shape               Italic
	EndFont
	InToc                 true
	HTMLTag               em
	ResetsFont true
End


InsetLayout Flex:Strong
	LyxType               charstyle
	LabelString           strong
	LatexType             command
	LatexName             strong
	Font
	  Series              Bold
	EndFont
	Preamble
	\newcommand{\strong}[1]{\textbf{#1}}
	EndPreamble
	InToc                 true
	HTMLTag               strong
	ResetsFont true
End


InsetLayout Flex:Code
	LyxType               charstyle
	LabelString           code
	LatexType             command
	LatexName             code
	Font
	  Family              Typewriter
	EndFont
	Preamble
	\newcommand{\code}[1]{\texttt{#1}}
	EndPreamble
	InToc                 true
	HTMLTag               code
	ResetsFont true
	Spellcheck            false
End