ox-md.el 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575
  1. ;;; ox-md.el --- Markdown Back-End for Org Export Engine
  2. ;; Copyright (C) 2012-2014 Free Software Foundation, Inc.
  3. ;; Author: Nicolas Goaziou <n.goaziou@gmail.com>
  4. ;; Keywords: org, wp, markdown
  5. ;; This file is part of GNU Emacs.
  6. ;; GNU Emacs is free software: you can redistribute it and/or modify
  7. ;; it under the terms of the GNU General Public License as published by
  8. ;; the Free Software Foundation, either version 3 of the License, or
  9. ;; (at your option) any later version.
  10. ;; GNU Emacs is distributed in the hope that it will be useful,
  11. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. ;; GNU General Public License for more details.
  14. ;; You should have received a copy of the GNU General Public License
  15. ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
  16. ;;; Commentary:
  17. ;; This library implements a Markdown back-end (vanilla flavor) for
  18. ;; Org exporter, based on `html' back-end. See Org manual for more
  19. ;; information.
  20. ;;; Code:
  21. (eval-when-compile (require 'cl))
  22. (require 'ox-html)
  23. (require 'ox-publish)
  24. ;;; User-Configurable Variables
  25. (defgroup org-export-md nil
  26. "Options specific to Markdown export back-end."
  27. :tag "Org Markdown"
  28. :group 'org-export
  29. :version "24.4"
  30. :package-version '(Org . "8.0"))
  31. (defcustom org-md-headline-style 'atx
  32. "Style used to format headlines.
  33. This variable can be set to either `atx' or `setext'."
  34. :group 'org-export-md
  35. :type '(choice
  36. (const :tag "Use \"atx\" style" atx)
  37. (const :tag "Use \"Setext\" style" setext)))
  38. ;;; Define Back-End
  39. (org-export-define-derived-backend 'md 'html
  40. :export-block '("MD" "MARKDOWN")
  41. :filters-alist '((:filter-parse-tree . org-md-separate-elements))
  42. :menu-entry
  43. '(?m "Export to Markdown"
  44. ((?M "To temporary buffer"
  45. (lambda (a s v b) (org-md-export-as-markdown a s v)))
  46. (?m "To file" (lambda (a s v b) (org-md-export-to-markdown a s v)))
  47. (?o "To file and open"
  48. (lambda (a s v b)
  49. (if a (org-md-export-to-markdown t s v)
  50. (org-open-file (org-md-export-to-markdown nil s v)))))))
  51. :translate-alist '((bold . org-md-bold)
  52. (code . org-md-verbatim)
  53. (comment . (lambda (&rest args) ""))
  54. (comment-block . (lambda (&rest args) ""))
  55. (example-block . org-md-example-block)
  56. (export-block . org-md-export-block)
  57. (fixed-width . org-md-example-block)
  58. (footnote-definition . ignore)
  59. (footnote-reference . ignore)
  60. (headline . org-md-headline)
  61. (horizontal-rule . org-md-horizontal-rule)
  62. (inline-src-block . org-md-verbatim)
  63. (inner-template . org-md-inner-template)
  64. (italic . org-md-italic)
  65. (item . org-md-item)
  66. (keyword . org-md-keyword)
  67. (line-break . org-md-line-break)
  68. (link . org-md-link)
  69. (node-property . org-md-node-property)
  70. (paragraph . org-md-paragraph)
  71. (plain-list . org-md-plain-list)
  72. (plain-text . org-md-plain-text)
  73. (property-drawer . org-md-property-drawer)
  74. (quote-block . org-md-quote-block)
  75. (section . org-md-section)
  76. (src-block . org-md-example-block)
  77. (template . org-md-template)
  78. (verbatim . org-md-verbatim))
  79. :options-alist '((:md-headline-style nil nil org-md-headline-style)))
  80. ;;; Filters
  81. (defun org-md-separate-elements (tree backend info)
  82. "Fix blank lines between elements.
  83. TREE is the parse tree being exported. BACKEND is the export
  84. back-end used. INFO is a plist used as a communication channel.
  85. Enforce a blank line between elements. There are two exceptions
  86. to this rule:
  87. 1. Preserve blank lines between sibling items in a plain list,
  88. 2. In an item, remove any blank line before the very first
  89. paragraph and the next sub-list.
  90. Assume BACKEND is `md'."
  91. (org-element-map tree (remq 'item org-element-all-elements)
  92. (lambda (e)
  93. (org-element-put-property
  94. e :post-blank
  95. (if (and (eq (org-element-type e) 'paragraph)
  96. (eq (org-element-type (org-element-property :parent e)) 'item)
  97. (eq (org-element-type (org-export-get-next-element e info))
  98. 'plain-list)
  99. (not (org-export-get-previous-element e info)))
  100. 0
  101. 1))))
  102. ;; Return updated tree.
  103. tree)
  104. ;;; Transcode Functions
  105. ;;;; Bold
  106. (defun org-md-bold (bold contents info)
  107. "Transcode BOLD object into Markdown format.
  108. CONTENTS is the text within bold markup. INFO is a plist used as
  109. a communication channel."
  110. (format "**%s**" contents))
  111. ;;;; Code and Verbatim
  112. (defun org-md-verbatim (verbatim contents info)
  113. "Transcode VERBATIM object into Markdown format.
  114. CONTENTS is nil. INFO is a plist used as a communication
  115. channel."
  116. (let ((value (org-element-property :value verbatim)))
  117. (format (cond ((not (string-match "`" value)) "`%s`")
  118. ((or (string-match "\\``" value)
  119. (string-match "`\\'" value))
  120. "`` %s ``")
  121. (t "``%s``"))
  122. value)))
  123. ;;;; Example Block, Src Block and export Block
  124. (defun org-md-example-block (example-block contents info)
  125. "Transcode EXAMPLE-BLOCK element into Markdown format.
  126. CONTENTS is nil. INFO is a plist used as a communication
  127. channel."
  128. (replace-regexp-in-string
  129. "^" " "
  130. (org-remove-indentation
  131. (org-export-format-code-default example-block info))))
  132. (defun org-md-export-block (export-block contents info)
  133. "Transcode a EXPORT-BLOCK element from Org to Markdown.
  134. CONTENTS is nil. INFO is a plist holding contextual information."
  135. (if (member (org-element-property :type export-block) '("MARKDOWN" "MD"))
  136. (org-remove-indentation (org-element-property :value export-block))
  137. ;; Also include HTML export blocks.
  138. (org-export-with-backend 'html export-block contents info)))
  139. ;;;; Headline
  140. (defun org-md-headline (headline contents info)
  141. "Transcode HEADLINE element into Markdown format.
  142. CONTENTS is the headline contents. INFO is a plist used as
  143. a communication channel."
  144. (unless (org-element-property :footnote-section-p headline)
  145. (let* ((level (org-export-get-relative-level headline info))
  146. (title (org-export-data (org-element-property :title headline) info))
  147. (todo (and (plist-get info :with-todo-keywords)
  148. (let ((todo (org-element-property :todo-keyword
  149. headline)))
  150. (and todo (concat (org-export-data todo info) " ")))))
  151. (tags (and (plist-get info :with-tags)
  152. (let ((tag-list (org-export-get-tags headline info)))
  153. (and tag-list
  154. (format " :%s:"
  155. (mapconcat 'identity tag-list ":"))))))
  156. (priority
  157. (and (plist-get info :with-priority)
  158. (let ((char (org-element-property :priority headline)))
  159. (and char (format "[#%c] " char)))))
  160. (anchor
  161. (when (plist-get info :with-toc)
  162. (org-html--anchor
  163. (or (org-element-property :CUSTOM_ID headline)
  164. (org-export-get-headline-id headline info))
  165. nil nil info)))
  166. ;; Headline text without tags.
  167. (heading (concat todo priority title))
  168. (style (plist-get info :md-headline-style)))
  169. (cond
  170. ;; Cannot create a headline. Fall-back to a list.
  171. ((or (org-export-low-level-p headline info)
  172. (not (memq style '(atx setext)))
  173. (and (eq style 'atx) (> level 6))
  174. (and (eq style 'setext) (> level 2)))
  175. (let ((bullet
  176. (if (not (org-export-numbered-headline-p headline info)) "-"
  177. (concat (number-to-string
  178. (car (last (org-export-get-headline-number
  179. headline info))))
  180. "."))))
  181. (concat bullet (make-string (- 4 (length bullet)) ? ) heading tags
  182. "\n\n"
  183. (and contents
  184. (replace-regexp-in-string "^" " " contents)))))
  185. ;; Use "Setext" style.
  186. ((eq style 'setext)
  187. (concat heading tags anchor "\n"
  188. (make-string (length heading) (if (= level 1) ?= ?-))
  189. "\n\n"
  190. contents))
  191. ;; Use "atx" style.
  192. (t (concat (make-string level ?#) " " heading tags anchor "\n\n" contents))))))
  193. ;;;; Horizontal Rule
  194. (defun org-md-horizontal-rule (horizontal-rule contents info)
  195. "Transcode HORIZONTAL-RULE element into Markdown format.
  196. CONTENTS is the horizontal rule contents. INFO is a plist used
  197. as a communication channel."
  198. "---")
  199. ;;;; Italic
  200. (defun org-md-italic (italic contents info)
  201. "Transcode ITALIC object into Markdown format.
  202. CONTENTS is the text within italic markup. INFO is a plist used
  203. as a communication channel."
  204. (format "*%s*" contents))
  205. ;;;; Item
  206. (defun org-md-item (item contents info)
  207. "Transcode ITEM element into Markdown format.
  208. CONTENTS is the item contents. INFO is a plist used as
  209. a communication channel."
  210. (let* ((type (org-element-property :type (org-export-get-parent item)))
  211. (struct (org-element-property :structure item))
  212. (bullet (if (not (eq type 'ordered)) "-"
  213. (concat (number-to-string
  214. (car (last (org-list-get-item-number
  215. (org-element-property :begin item)
  216. struct
  217. (org-list-prevs-alist struct)
  218. (org-list-parents-alist struct)))))
  219. "."))))
  220. (concat bullet
  221. (make-string (- 4 (length bullet)) ? )
  222. (case (org-element-property :checkbox item)
  223. (on "[X] ")
  224. (trans "[-] ")
  225. (off "[ ] "))
  226. (let ((tag (org-element-property :tag item)))
  227. (and tag (format "**%s:** "(org-export-data tag info))))
  228. (and contents
  229. (org-trim (replace-regexp-in-string "^" " " contents))))))
  230. ;;;; Keyword
  231. (defun org-md-keyword (keyword contents info)
  232. "Transcode a KEYWORD element into Markdown format.
  233. CONTENTS is nil. INFO is a plist used as a communication
  234. channel."
  235. (if (member (org-element-property :key keyword) '("MARKDOWN" "MD"))
  236. (org-element-property :value keyword)
  237. (org-export-with-backend 'html keyword contents info)))
  238. ;;;; Line Break
  239. (defun org-md-line-break (line-break contents info)
  240. "Transcode LINE-BREAK object into Markdown format.
  241. CONTENTS is nil. INFO is a plist used as a communication
  242. channel."
  243. " \n")
  244. ;;;; Link
  245. (defun org-md-link (link contents info)
  246. "Transcode LINE-BREAK object into Markdown format.
  247. CONTENTS is the link's description. INFO is a plist used as
  248. a communication channel."
  249. (let ((link-org-files-as-md
  250. (function
  251. (lambda (raw-path)
  252. ;; Treat links to `file.org' as links to `file.md'.
  253. (if (string= ".org" (downcase (file-name-extension raw-path ".")))
  254. (concat (file-name-sans-extension raw-path) ".md")
  255. raw-path))))
  256. (type (org-element-property :type link)))
  257. (cond
  258. ((member type '("custom-id" "id"))
  259. (let ((destination (org-export-resolve-id-link link info)))
  260. (if (stringp destination) ; External file.
  261. (let ((path (funcall link-org-files-as-md destination)))
  262. (if (not contents) (format "<%s>" path)
  263. (format "[%s](%s)" contents path)))
  264. (concat
  265. (and contents (concat contents " "))
  266. (format "(%s)"
  267. (format (org-export-translate "See section %s" :html info)
  268. (if (org-export-numbered-headline-p destination info)
  269. (mapconcat #'number-to-string
  270. (org-export-get-headline-number
  271. destination info)
  272. ".")
  273. (org-export-data
  274. (org-element-property :title destination) info))))))))
  275. ((org-export-inline-image-p link org-html-inline-image-rules)
  276. (let ((path (let ((raw-path (org-element-property :path link)))
  277. (if (not (file-name-absolute-p raw-path)) raw-path
  278. (expand-file-name raw-path))))
  279. (caption (org-export-data
  280. (org-export-get-caption
  281. (org-export-get-parent-element link)) info)))
  282. (format "![img](%s)"
  283. (if (not (org-string-nw-p caption)) path
  284. (format "%s \"%s\"" path caption)))))
  285. ((string= type "coderef")
  286. (let ((ref (org-element-property :path link)))
  287. (format (org-export-get-coderef-format ref contents)
  288. (org-export-resolve-coderef ref info))))
  289. ((equal type "radio") contents)
  290. ((equal type "fuzzy")
  291. (let ((destination (org-export-resolve-fuzzy-link link info)))
  292. (if (org-string-nw-p contents) contents
  293. (when destination
  294. (let ((number (org-export-get-ordinal destination info)))
  295. (if number
  296. (if (atom number) (number-to-string number)
  297. (mapconcat #'number-to-string number "."))
  298. ;; Unnumbered headline.
  299. (and (eq 'headline (org-element-type destination))
  300. ;; BUG: shouldn't headlines have a form like [ref](name) in md?
  301. (org-export-data
  302. (org-element-property :title destination) info))))))))
  303. ;; Link type is handled by a special function.
  304. ((let ((protocol (nth 2 (assoc type org-link-protocols))))
  305. (and (functionp protocol)
  306. (funcall protocol
  307. (org-link-unescape (org-element-property :path link))
  308. contents
  309. 'md))))
  310. (t (let* ((raw-path (org-element-property :path link))
  311. (path
  312. (cond
  313. ((member type '("http" "https" "ftp"))
  314. (concat type ":" raw-path))
  315. ((string= type "file")
  316. (let ((path (funcall link-org-files-as-md raw-path)))
  317. (if (not (file-name-absolute-p path)) path
  318. ;; If file path is absolute, prepend it
  319. ;; with "file:" component.
  320. (concat "file:" path))))
  321. (t raw-path))))
  322. (if (not contents) (format "<%s>" path)
  323. (format "[%s](%s)" contents path)))))))
  324. ;;;; Node Property
  325. (defun org-md-node-property (node-property contents info)
  326. "Transcode a NODE-PROPERTY element into Markdown syntax.
  327. CONTENTS is nil. INFO is a plist holding contextual
  328. information."
  329. (format "%s:%s"
  330. (org-element-property :key node-property)
  331. (let ((value (org-element-property :value node-property)))
  332. (if value (concat " " value) ""))))
  333. ;;;; Paragraph
  334. (defun org-md-paragraph (paragraph contents info)
  335. "Transcode PARAGRAPH element into Markdown format.
  336. CONTENTS is the paragraph contents. INFO is a plist used as
  337. a communication channel."
  338. (let ((first-object (car (org-element-contents paragraph))))
  339. ;; If paragraph starts with a #, protect it.
  340. (if (and (stringp first-object) (string-match "\\`#" first-object))
  341. (replace-regexp-in-string "\\`#" "\\#" contents nil t)
  342. contents)))
  343. ;;;; Plain List
  344. (defun org-md-plain-list (plain-list contents info)
  345. "Transcode PLAIN-LIST element into Markdown format.
  346. CONTENTS is the plain-list contents. INFO is a plist used as
  347. a communication channel."
  348. contents)
  349. ;;;; Plain Text
  350. (defun org-md-plain-text (text info)
  351. "Transcode a TEXT string into Markdown format.
  352. TEXT is the string to transcode. INFO is a plist holding
  353. contextual information."
  354. (when (plist-get info :with-smart-quotes)
  355. (setq text (org-export-activate-smart-quotes text :html info)))
  356. ;; Protect ambiguous #. This will protect # at the beginning of
  357. ;; a line, but not at the beginning of a paragraph. See
  358. ;; `org-md-paragraph'.
  359. (setq text (replace-regexp-in-string "\n#" "\n\\\\#" text))
  360. ;; Protect ambiguous !
  361. (setq text (replace-regexp-in-string "\\(!\\)\\[" "\\\\!" text nil nil 1))
  362. ;; Protect `, *, _ and \
  363. (setq text (replace-regexp-in-string "[`*_\\]" "\\\\\\&" text))
  364. ;; Handle special strings, if required.
  365. (when (plist-get info :with-special-strings)
  366. (setq text (org-html-convert-special-strings text)))
  367. ;; Handle break preservation, if required.
  368. (when (plist-get info :preserve-breaks)
  369. (setq text (replace-regexp-in-string "[ \t]*\n" " \n" text)))
  370. ;; Return value.
  371. text)
  372. ;;;; Property Drawer
  373. (defun org-md-property-drawer (property-drawer contents info)
  374. "Transcode a PROPERTY-DRAWER element into Markdown format.
  375. CONTENTS holds the contents of the drawer. INFO is a plist
  376. holding contextual information."
  377. (and (org-string-nw-p contents)
  378. (replace-regexp-in-string "^" " " contents)))
  379. ;;;; Quote Block
  380. (defun org-md-quote-block (quote-block contents info)
  381. "Transcode QUOTE-BLOCK element into Markdown format.
  382. CONTENTS is the quote-block contents. INFO is a plist used as
  383. a communication channel."
  384. (replace-regexp-in-string
  385. "^" "> "
  386. (replace-regexp-in-string "\n\\'" "" contents)))
  387. ;;;; Section
  388. (defun org-md-section (section contents info)
  389. "Transcode SECTION element into Markdown format.
  390. CONTENTS is the section contents. INFO is a plist used as
  391. a communication channel."
  392. contents)
  393. ;;;; Template
  394. (defun org-md-inner-template (contents info)
  395. "Return body of document after converting it to Markdown syntax.
  396. CONTENTS is the transcoded contents string. INFO is a plist
  397. holding export options."
  398. ;; Make sure CONTENTS is separated from table of contents and
  399. ;; footnotes with at least a blank line.
  400. (org-trim (org-html-inner-template (concat "\n" contents "\n") info)))
  401. (defun org-md-template (contents info)
  402. "Return complete document string after Markdown conversion.
  403. CONTENTS is the transcoded contents string. INFO is a plist used
  404. as a communication channel."
  405. contents)
  406. ;;; Interactive function
  407. ;;;###autoload
  408. (defun org-md-export-as-markdown (&optional async subtreep visible-only)
  409. "Export current buffer to a Markdown buffer.
  410. If narrowing is active in the current buffer, only export its
  411. narrowed part.
  412. If a region is active, export that region.
  413. A non-nil optional argument ASYNC means the process should happen
  414. asynchronously. The resulting buffer should be accessible
  415. through the `org-export-stack' interface.
  416. When optional argument SUBTREEP is non-nil, export the sub-tree
  417. at point, extracting information from the headline properties
  418. first.
  419. When optional argument VISIBLE-ONLY is non-nil, don't export
  420. contents of hidden elements.
  421. Export is done in a buffer named \"*Org MD Export*\", which will
  422. be displayed when `org-export-show-temporary-export-buffer' is
  423. non-nil."
  424. (interactive)
  425. (org-export-to-buffer 'md "*Org MD Export*"
  426. async subtreep visible-only nil nil (lambda () (text-mode))))
  427. ;;;###autoload
  428. (defun org-md-convert-region-to-md ()
  429. "Assume the current region has org-mode syntax, and convert it to Markdown.
  430. This can be used in any buffer. For example, you can write an
  431. itemized list in org-mode syntax in a Markdown buffer and use
  432. this command to convert it."
  433. (interactive)
  434. (org-export-replace-region-by 'md))
  435. ;;;###autoload
  436. (defun org-md-export-to-markdown (&optional async subtreep visible-only)
  437. "Export current buffer to a Markdown file.
  438. If narrowing is active in the current buffer, only export its
  439. narrowed part.
  440. If a region is active, export that region.
  441. A non-nil optional argument ASYNC means the process should happen
  442. asynchronously. The resulting file should be accessible through
  443. the `org-export-stack' interface.
  444. When optional argument SUBTREEP is non-nil, export the sub-tree
  445. at point, extracting information from the headline properties
  446. first.
  447. When optional argument VISIBLE-ONLY is non-nil, don't export
  448. contents of hidden elements.
  449. Return output file's name."
  450. (interactive)
  451. (let ((outfile (org-export-output-file-name ".md" subtreep)))
  452. (org-export-to-file 'md outfile async subtreep visible-only)))
  453. ;;;###autoload
  454. (defun org-md-publish-to-md (plist filename pub-dir)
  455. "Publish an org file to Markdown.
  456. FILENAME is the filename of the Org file to be published. PLIST
  457. is the property list for the given project. PUB-DIR is the
  458. publishing directory.
  459. Return output file name."
  460. (org-publish-org-to 'md filename ".md" plist pub-dir))
  461. (provide 'ox-md)
  462. ;; Local variables:
  463. ;; generated-autoload-file: "org-loaddefs.el"
  464. ;; End:
  465. ;;; ox-md.el ends here