forked from RunestoneInteractive/RunestoneServer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
codechat_config.json
30 lines (27 loc) · 1.52 KB
/
codechat_config.json
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
# ************************************************
# |docname| - Configuration for a CodeChat project
# ************************************************
# This file defines the configuration for a CodeChat project. In addition to allowing standard JSON objects, it also allows Python-style comments and any valid Python literal.
#
# The file must contain a single dict, with the following keys:
{
# ``source_path``: optional; defaults to ``.``. A path to the root of the source tree. Relative paths are rooted in the directory containing this file.
#"source_path": ".",
# ``output_path``: required. A path to the root of the HTML output produced by this renderer. Relative paths are rooted in the directory containing this file.
"output_path": "_build",
# ``args``: required. A list of arguments to invoke the renderer. Each element of the list must be a string. Each string may optionally contain the following replacement values:
#
# - ``{project_path}``: an absolute path to the directory containing this file.
# - ``{source_path}``: the ``source_path`` above, but as an absolute path.
# - ``{output_path}``: the ``output_path`` above, but as an absolute path.
"args": [
# See https://www.sphinx-doc.org/en/master/man/sphinx-build.html.
"sphinx-build",
# The source directory.
".",
# The output directory.
"_build",
],
# ``html_ext``: optional; defaults to ``.html``. The extension used by this renderer when generating HTML files.
#"html_ext": ".html",
}