org 导出到 markdown

加入到 org-export-backends

(with-eval-after-load 'org
  (add-to-list 'org-export-backends 'md))

去除 Table of Content

org 的 export,会自动加入一个目录,也就是 Table of Content,但这个东西在 markdown 里大多数时候是多余的

#+OPTIONS: toc:nil

例子

#+TITLE: org 导出 md
#+AUTHOR: me
#+OPTIONS: toc:nil

* Org mode
  Hello World!

C-c C-e m o

# Org mode
  Hello World

你可能感兴趣的:(org 导出到 markdown)