Describe your proposed improvement and the problem it solves.
Add a reader and writer for Obsidian Flavored Markdown. Obsidian Flavored Markdown combines features from CommonMark, GitHub Flavored Markdown and LaTeX, as well as several extensions inspired by wiki markup.
| Syntax |
Description |
[[Link]] |
Internal links |
![[Link]] |
Embed files |
![[Link#^id]] |
Block references |
^id |
Defining a block |
%%Text%% |
Comments |
~~Text~~ |
Strikethroughs |
==Text== |
Highlights |
``` |
Code blocks |
- [ ] |
Incomplete task |
- [x] |
Completed task |
> [!note] |
Callouts |
| (GFM syntax) |
Tables |
Describe alternatives you've considered.
Most of these extensions exist in one form or another within Pandoc, but it seems like it would be convenient to bundle them all together in a way that makes converting to/from Obsidian files easier. I'd like to explore implementing this myself, but wanted to first gauge interest.
Describe your proposed improvement and the problem it solves.
Add a reader and writer for Obsidian Flavored Markdown. Obsidian Flavored Markdown combines features from CommonMark, GitHub Flavored Markdown and LaTeX, as well as several extensions inspired by wiki markup.
[[Link]]![[Link]]![[Link#^id]]^id%%Text%%~~Text~~==Text==```- [ ]- [x]> [!note]Describe alternatives you've considered.
Most of these extensions exist in one form or another within Pandoc, but it seems like it would be convenient to bundle them all together in a way that makes converting to/from Obsidian files easier. I'd like to explore implementing this myself, but wanted to first gauge interest.