-
Notifications
You must be signed in to change notification settings - Fork 15
/
org.gnome.gedit.plugins.markdown_preview.gschema.xml
215 lines (204 loc) · 7.1 KB
/
org.gnome.gedit.plugins.markdown_preview.gschema.xml
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
<?xml version="1.0" encoding="UTF-8"?>
<schemalist>
<schema id="org.gnome.gedit.plugins.markdown_preview"
path="/org/gnome/gedit/plugins/markdown_preview/">
<!-- General options -->
<key type="s" name="position">
<default>'side'</default>
<summary>The position of the preview within the window</summary>
<description>Can be 'side', 'bottom', or 'auto'.</description>
</key>
<key type="b" name="relative">
<default>true</default>
<summary>Use relative paths</summary>
<description>Enable relative paths for links and pictures</description>
</key>
<key type="b" name="auto-manage-pane">
<default>true</default>
<summary>Show/hide pane automatically</summary>
<description>
If true, the pane will be shown automatically when there is something to
preview, and hidden automatically otherwise if no other plugin is active
in that pane.
</description>
</key>
<key type="b" name="auto-reload">
<default>true</default>
<summary>Automatically reload the preview</summary>
<description>
Reload the preview each time the document changes. It will require more
resources if it's enabled.
</description>
</key>
<key type="s" name="splitter">
<default>'whole'</default>
<summary>How to split the document</summary>
<description>Can be 'whole' (no splitting), 'h1', 'h2', or 'hr'.</description>
</key>
<!-- CSS options -->
<key type="b" name="use-style">
<default>false</default>
<summary>Use a stylesheet</summary>
<description></description>
</key>
<key type="s" name="style">
<default>''</default>
<summary>Stylesheet URI</summary>
<description></description>
</key>
<!-- RevealJs options -->
<key type="s" name="revealjs-theme">
<default>'black'</default>
<summary>Name of the revealjs theme</summary>
<description>Values can be </description>
</key>
<key type="s" name="revealjs-transitions">
<default>'none'</default>
<summary>Type of transitions</summary>
<description>Values can be </description>
</key>
<key type="b" name="revealjs-slide-num">
<default>true</default>
<summary>Display slide numbers</summary>
<description></description>
</key>
<!-- Rendering options -->
<key type="s" name="backend">
<default>'python'</default>
<summary>Favorite backend for the preview</summary>
<description>Can be 'python' or 'pandoc'</description>
</key>
<key type="s" name="custom-export">
<default>''</default>
<summary>Custom export command</summary>
<description></description>
</key>
<key type="s" name="custom-render">
<default>''</default>
<summary>Custom rendering command</summary>
<description></description>
</key>
<key type="as" name="pandoc-command">
<default>['pandoc', '-s', '$INPUT_FILE', '--metadata', 'title=Preview']</default>
<summary>Pandoc rendering command line</summary>
<description>
The command line used for pandoc rendering. It has to return HTML code
instead of writing it in a file! '$INPUT_FILE' will be replaced in the
code by an appropriate value, it's "mandatory".
</description>
</key>
<key type="as" name="extensions">
<default>['extra', 'sane_lists', 'toc']</default>
<summary>Enabled extensions</summary>
<description>List of enabled extensions for python3-markdown</description>
</key>
</schema>
<schema id="org.gnome.gedit.plugins.markdown_preview.keybindings"
path="/org/gnome/gedit/plugins/markdown_preview/keybindings/">
<key name="code-block" type="as">
<default><![CDATA[['<Primary><Shift>C']]]></default>
<summary>Code block</summary>
<description></description>
</key>
<key name="quote" type="as">
<default><![CDATA[[]]]></default>
<summary>Quote</summary>
<description></description>
</key>
<key name="list-ordered" type="as">
<default><![CDATA[[]]]></default>
<summary>Ordered list</summary>
<description></description>
</key>
<key name="list-unordered" type="as">
<default><![CDATA[[]]]></default>
<summary>Unordered list</summary>
<description></description>
</key>
<key name="title-1" type="as">
<default><![CDATA[[]]]></default>
<summary>Title - Level 1</summary>
<description></description>
</key>
<key name="title-2" type="as">
<default><![CDATA[[]]]></default>
<summary>Title - Level 2</summary>
<description></description>
</key>
<key name="title-3" type="as">
<default><![CDATA[[]]]></default>
<summary>Title - Level 3</summary>
<description></description>
</key>
<key name="title-4" type="as">
<default><![CDATA[[]]]></default>
<summary>Title - Level 4</summary>
<description></description>
</key>
<key name="title-5" type="as">
<default><![CDATA[[]]]></default>
<summary>Title - Level 5</summary>
<description></description>
</key>
<key name="title-6" type="as">
<default><![CDATA[[]]]></default>
<summary>Title - Level 6</summary>
<description></description>
</key>
<key name="italic" type="as">
<default><![CDATA[['<Primary>slash']]]></default>
<summary>Italic</summary>
<description></description>
</key>
<key name="bold" type="as">
<default><![CDATA[['<Primary><Shift>B']]]></default>
<summary>Bold</summary>
<description></description>
</key>
<key name="monospace" type="as">
<default><![CDATA[[]]]></default>
<summary>Inline code</summary>
<description></description>
</key>
<key name="underline" type="as">
<default><![CDATA[[]]]></default>
<summary>Underline</summary>
<description></description>
</key>
<key name="stroke" type="as">
<default><![CDATA[[]]]></default>
<summary>Stroke</summary>
<description></description>
</key>
<key name="insert-picture" type="as">
<default><![CDATA[['<Primary><Shift>P']]]></default>
<summary>Insert a picture</summary>
<description></description>
</key>
<key name="insert-link" type="as">
<default><![CDATA[[]]]></default>
<summary>Insert a link</summary>
<description></description>
</key>
<key name="insert-table-2" type="as">
<default><![CDATA[[]]]></default>
<summary>Insert a table - 2 columns</summary>
<description></description>
</key>
<key name="insert-table-3" type="as">
<default><![CDATA[[]]]></default>
<summary>Insert a table - 3 columns</summary>
<description></description>
</key>
<key name="insert-table-4" type="as">
<default><![CDATA[[]]]></default>
<summary>Insert a table - 4 columns</summary>
<description></description>
</key>
<key name="insert-table-5" type="as">
<default><![CDATA[[]]]></default>
<summary>Insert a table - 5 columns</summary>
<description></description>
</key>
</schema>
</schemalist>