Skip to content

Commit

Permalink
maybe fix ref links
Browse files Browse the repository at this point in the history
  • Loading branch information
endolith committed Nov 18, 2024
1 parent 8e31c6f commit a9aed80
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,5 +92,21 @@ def setup(app):
# Add this to enable regular markdown mermaid syntax
myst_fence_as_directive = ["mermaid"]

# MyST configuration
myst_enable_extensions = [
"colon_fence", # For ::: fences
"dollarmath", # For $$
"linkify", # Auto-convert bare URLs to links
"substitution", # For {{ var }}
"tasklist", # For [ ] task lists
]

# Enable MyST to parse reST directives in markdown
myst_all_links_external = True
myst_heading_anchors = 3
myst_footnote_transition = True
myst_dmath_double_inline = True
myst_enable_checkboxes = True

# Add README.md as the index page
root_doc = 'index' # or 'contents' in older versions

0 comments on commit a9aed80

Please sign in to comment.