-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.txt
50 lines (43 loc) · 978 Bytes
/
config.txt
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
Configuration files
===================
[[Parent]]: user_documentation.txt
A _configuration file_ is a JSON-file which specifies Remark options. The `remark_config.json` file is automatically read as a configuration file --- provided it exists in the input root directory. Additional configuration files can be specified with the `-c` command-line option. The configuration properties mirror those of the command-line options.
Example
-------
[[set Code.type]]: python
[[Code]]:
{
"disable" :
[
],
"flags" :
[
],
"include" :
[
"*.txt",
"*.py",
"*.js",
"*.css",
"*.png",
"*.svg",
"*.json",
"index.htm"
],
"exclude" :
[
"remark_options",
"MANIFEST.in",
"license.txt",
"remark_license.txt",
"Remark/remark_files/highslide/*",
"Remark/remark_files/*template.txt",
"docs/*",
"MANIFEST",
"build/*",
"dist/*",
".hg*",
".DS*",
"*.pyc"
]
}