summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIlona <111542584+IlonaSilverwood@users.noreply.github.com>2023-03-29 08:07:06 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2023-03-29 08:27:32 -0700
commitf0ded7bbb66b41357aad4f3db8062941aae5db3c (patch)
treee26ed7357239481a4bbb3467bf870b29f42e4e97
parent1b1e7271b756f9b2d8c971f746638abd550619f1 (diff)
Add `wikilinks` to non-default extensions
-rw-r--r--MANUAL.txt16
1 files changed, 16 insertions, 0 deletions
diff --git a/MANUAL.txt b/MANUAL.txt
index 54c87b008..13c9af32d 100644
--- a/MANUAL.txt
+++ b/MANUAL.txt
@@ -5877,6 +5877,22 @@ that follows. For example:
or
Oxygen is O~2.
+
+#### Extension: `wikilinks_title_after_pipe` ####
+
+Pandoc supports multiple markdown wikilink syntaxes, regardless of
+whether the title is before or after the pipe.
+
+Using `--from=markdown+wikilinks_title_after_pipe` results in
+```[[Wiki]]
+[[URL|title]]
+```
+
+while using `--from=markdown+wikilinks_title_before_pipe` results
+in
+```[[Wiki]]
+[[title|URL]]
+```
## Markdown variants