File tree Expand file tree Collapse file tree 4 files changed +34
-15
lines changed
Expand file tree Collapse file tree 4 files changed +34
-15
lines changed Original file line number Diff line number Diff line change 3030# Add any Sphinx extension module names here, as strings. They can be extensions
3131# coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
3232extensions = [
33+ "myst_parser" ,
3334 "preferences_listing" ,
3435]
3536
@@ -187,6 +188,22 @@ def find_phoebus_version() -> str:
187188htmlhelp_basename = 'Phoebusdoc'
188189
189190
191+ # -- Options for MyST's markdown -----------------------------------------------
192+ # https://myst-parser.readthedocs.io/en/latest/configuration.html
193+
194+ myst_enable_extensions = [
195+ "amsmath" ,
196+ "colon_fence" ,
197+ "deflist" ,
198+ "dollarmath" ,
199+ "fieldlist" ,
200+ "html_image" ,
201+ "replacements" ,
202+ "smartquotes" ,
203+ "strikethrough" ,
204+ "tasklist" ,
205+ ]
206+
190207# -- Options for LaTeX output --------------------------------------------------
191208
192209latex_elements = {
Original file line number Diff line number Diff line change 1+ (preference_settings)=
2+ # Preferences Listing
3+
4+ The following preference settings are available for the various application features.
5+ To use them in your settings file, remember to prefix each setting with the package name.
6+
7+ For example,
8+ for the ` drop_failed_archives ` preference in the ` trends.databrowser3 ` section
9+ (package name ` org.csstudio.trends.databrowser3 ` ) add a line like:
10+
11+ ``` properties
12+ org.csstudio.trends.databrowser3/drop_failed_archives =true
13+ ```
14+
15+ ``` {prefs:listing}
16+ ```
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11sphinx == 8.2.3
22sphinx_rtd_theme == 3.0.2
3+ myst-parser == 4.0.1
You can’t perform that action at this time.
0 commit comments