@@ -269,6 +269,7 @@ header when requesting a document from a URL:
269269 - `mdoc` ([mdoc] manual page markup)
270270 - `muse` ([Muse])
271271 - `native` (native Haskell)
272+ - `obsidian` ([Obsidian-Flavored Markdown])
272273 - `odt` ([OpenDocument text document][ODT])
273274 - `opml` ([OPML])
274275 - `org` ([Emacs Org mode])
@@ -503,6 +504,7 @@ header when requesting a document from a URL:
503504[Jira]: https://jira.atlassian.com/secure/WikiRendererHelpAction.jspa?section=all
504505[txt2tags]: https://txt2tags.org
505506[EPUB]: http://idpf.org/epub
507+ [Obsidian-Flavored Markdown]: https://help.obsidian.md/obsidian-flavored-markdown
506508[OPML]: http://dev.opml.org/spec2.html
507509[OpenDocument XML]: https://www.oasis-open.org/2021/06/16/opendocument-v1-3-oasis-standard-published/
508510[ODT]: https://en.wikipedia.org/wiki/OpenDocument
@@ -6004,11 +6006,18 @@ or image itself, if these differ.
60046006
60056007### Extension: `mark` ###
60066008
6007- To highlight out a section of text, begin and end it with
6009+ To highlight a section of text, begin and end it with
60086010with `==`. Thus, for example,
60096011
60106012 This ==is deleted text.==
60116013
6014+ ### Extension: `comments` ###
6015+
6016+ To comment out a section of text, begin and end it
6017+ with `%%`. Thus, for example,
6018+
6019+ This %%is a comment.%%
6020+
60126021### Extension: `attributes` ###
60136022
60146023Allows attributes to be attached to any inline or block-level
@@ -6155,15 +6164,16 @@ simply skipped (as opposed to being parsed as paragraphs).
61556164
61566165### Extension: `alerts` ###
61576166
6158- Supports [GitHub-style Markdown alerts], like
6167+ Supports [GitHub-style Markdown alerts] and [Obsidian callouts] , like
61596168
61606169 > [!TIP]
61616170 > Helpful advice for doing things better or more easily.
61626171
6172+ [Obsidian callouts]: https://help.obsidian.md/callouts
61636173 [GitHub-style Markdown alerts]: https://docs.github.com/en/get-started/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax#alerts
61646174
61656175Note: This extension currently only works with commonmark:
6166- `commonmark`, `gfm`, `commonmark_x`.
6176+ `commonmark`, `gfm`, `commonmark_x`, `obsidian` .
61676177
61686178### Extension: `autolink_bare_uris` ###
61696179
@@ -6213,6 +6223,38 @@ or
62136223
62146224 Oxygen is O~2.
62156225
6226+ ### Extension: `wikilink_transclusions` ###
6227+
6228+ Follows [Obsidan-style transclusions] using wikilink syntax to embed one file in another. For example to transclude the file "Title":
6229+
6230+ ![[Title]]
6231+
6232+ [Obsidan-style transclusions]: https://help.obsidian.md/embeds
6233+
6234+ ### Extension: `wilikink_heading_transclusions` ###
6235+
6236+ Follows the [Obsidan-style heading transclusions] syntax. For example to transclude a heading within the file "Title":
6237+
6238+ ![[Title#Heading]]
6239+
6240+ [Obsidan-style heading transclusions]: https://help.obsidian.md/links#Link+to+a+heading+in+a+note
6241+
6242+ ### Extension: `wilikink_block_transclusions` ###
6243+
6244+ Follows the [Obsidan-style block transclusions] syntax. For example to transclude block ID ^ref within the file "Title":
6245+
6246+ ![[Title#^ref]]
6247+
6248+ [Obsidan-style block transclusions]: https://help.obsidian.md/links#Link+to+a+block+in+a+note
6249+
6250+ ### Extension: `block_ids` ###
6251+
6252+ Follows the [Obsidan-style block identifiers] syntax. For example add `^ref` at the end of a paragraph:
6253+
6254+ Text ^ref
6255+
6256+ [Obsidan-style block identifiers]: https://help.obsidian.md/links#Link+to+a+block+in+a+note
6257+
62166258### Extension: `wikilinks_title_after_pipe` ###
62176259
62186260Pandoc supports multiple Markdown wikilink syntaxes, regardless of
@@ -6240,6 +6282,7 @@ variants are supported:
62406282- `markdown_strict` (Markdown.pl)
62416283- `commonmark` (CommonMark)
62426284- `gfm` (Github-Flavored Markdown)
6285+ - `obsidian` (Obsidian-Flavored Markdown)
62436286- `commonmark_x` (CommonMark with many pandoc extensions)
62446287
62456288To see which extensions are supported for a given format,
0 commit comments