将 orgmode 文本块转换为 markdown
使用 .body.markdown 将 orgmode 文本块转换为 markdown。
markdown.org
* Note title
Text with /emphasis/ and *bold* and a [[https://www.google][link]].
+ Bullet one
+ Bullet two
markdown.jinja2
{{ root.at("Note title").body.markdown }}
运行
orji out markdown.org markdown.jinja2
将输出
Text with /emphasis/ and *bold* and a [link](https://www.google).
* Bullet one
* Bullet two