Skip to content

Commit 1f98a34

Browse files
committed
Update README.md
1 parent 915723d commit 1f98a34

File tree

1 file changed

+18
-9
lines changed

1 file changed

+18
-9
lines changed

README.md

Lines changed: 18 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -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
577583
is at a wiki link. Use <kbd>M-p</kbd> and <kbd>M-n</kbd> to quickly jump to the
578584
previous and next links (including links of other types).
579585
Aliased or piped wiki links of the form `[[link text|PageName]]`
580586
are 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

Comments
 (0)