@@ -473,6 +473,11 @@ provides an interface to all of the possible customizations:
473473 automatically indent new lines when the enter key is pressed
474474 (default: <kbd >t</kbd >)
475475
476+ * ` markdown-enable-wiki-links ` - syntax highlighting for wiki
477+ links (default: ` nil ` ). Set this to a non-nil value to turn on
478+ wiki link support by default. Wiki link support can be toggled
479+ later using the function ` markdown-toggle-wiki-links ` ."
480+
476481 * ` markdown-wiki-link-alias-first ` - set to a non-nil value to
477482 treat aliased wiki links like ` [[link text|PageName]] `
478483 (default: <kbd >t</kbd >). When set to nil, they will be treated as
@@ -483,8 +488,8 @@ provides an interface to all of the possible customizations:
483488
484489 * ` markdown-enable-math ` - syntax highlighting for LaTeX
485490 fragments (default: ` nil ` ). Set this to <kbd >t</kbd > to turn on math
486- support by default. Math support can be toggled later using
487- the function ` markdown-enable -math ` ."
491+ support by default. Math support can be enabled, disabled, or
492+ toggled later using the function ` markdown-toggle -math ` ."
488493
489494 * ` markdown-css-paths ` - CSS files to link to in XHTML output
490495 (default: ` nil ` ).
@@ -571,18 +576,22 @@ customization screen.
571576
572577## Extensions
573578
574- Besides supporting the basic Markdown syntax, markdown-mode also
575- includes syntax highlighting for ` [[Wiki Links]] ` by default. Wiki
576- links may be followed by pressing <kbd >C-c C-o</kbd > when the point
579+ Besides supporting the basic Markdown syntax, Markdown Mode also
580+ includes syntax highlighting for ` [[Wiki Links]] ` . This can be
581+ enabled by setting ` markdown-enable-wiki-links ` to a non-nil value.
582+ Wiki links may be followed by pressing <kbd >C-c C-o</kbd > when the point
577583is at a wiki link. Use <kbd >M-p</kbd > and <kbd >M-n</kbd > to quickly jump to the
578584previous and next links (including links of other types).
579585Aliased or piped wiki links of the form ` [[link text|PageName]] `
580586are also supported. Since some wikis reverse these components, set
581587` markdown-wiki-link-alias-first ` to nil to treat them as
582- ` [[PageName|link text]] ` . By default, Markdown Mode only searches
583- for target files in the current directory. Sequential parent
584- directory search (as in [ Ikiwiki] [ ] ) can be enabled by setting
585- ` markdown-wiki-link-search-parent-directories ` to a non-nil value.
588+ ` [[PageName|link text]] ` . If ` markdown-wiki-link-fontify-missing `
589+ is also non-nil, Markdown Mode will highlight wiki links with
590+ missing target file in a different color. By default, Markdown
591+ Mode only searches for target files in the current directory.
592+ Sequential parent directory search (as in [ Ikiwiki] [ ] ) can be
593+ enabled by setting ` markdown-wiki-link-search-parent-directories `
594+ to a non-nil value.
586595
587596[ Ikiwiki ] : https://ikiwiki.info
588597
0 commit comments