org-exp-blocks.el 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402
  1. ;;; org-exp-blocks.el --- pre-process blocks when exporting org files
  2. ;; Copyright (C) 2009-2013 Free Software Foundation, Inc.
  3. ;; Author: Eric Schulte
  4. ;; This file is part of GNU Emacs.
  5. ;;
  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. ;;
  18. ;; This is a utility for pre-processing blocks in org files before
  19. ;; export using the `org-export-preprocess-hook'. It can be used for
  20. ;; exporting new types of blocks from org-mode files and also for
  21. ;; changing the default export behavior of existing org-mode blocks.
  22. ;; The `org-export-blocks' and `org-export-interblocks' variables can
  23. ;; be used to control how blocks and the spaces between blocks
  24. ;; respectively are processed upon export.
  25. ;;
  26. ;; The type of a block is defined as the string following =#+begin_=,
  27. ;; so for example the following block would be of type ditaa. Note
  28. ;; that both upper or lower case are allowed in =#+BEGIN_= and
  29. ;; =#+END_=.
  30. ;;
  31. ;; #+begin_ditaa blue.png -r -S
  32. ;; +---------+
  33. ;; | cBLU |
  34. ;; | |
  35. ;; | +----+
  36. ;; | |cPNK|
  37. ;; | | |
  38. ;; +----+----+
  39. ;; #+end_ditaa
  40. ;;
  41. ;;; Currently Implemented Block Types
  42. ;;
  43. ;; ditaa :: (DEPRECATED--use "#+begin_src ditaa" code blocks) Convert
  44. ;; ascii pictures to actual images using ditaa
  45. ;; http://ditaa.sourceforge.net/. To use this set
  46. ;; `org-ditaa-jar-path' to the path to ditaa.jar on your
  47. ;; system (should be set automatically in most cases) .
  48. ;;
  49. ;; dot :: (DEPRECATED--use "#+begin_src dot" code blocks) Convert
  50. ;; graphs defined using the dot graphing language to images
  51. ;; using the dot utility. For information on dot see
  52. ;; http://www.graphviz.org/
  53. ;;
  54. ;; export-comment :: Wrap comments with titles and author information,
  55. ;; in their own divs with author-specific ids allowing for
  56. ;; css coloring of comments based on the author.
  57. ;;
  58. ;;; Adding new blocks
  59. ;;
  60. ;; When adding a new block type first define a formatting function
  61. ;; along the same lines as `org-export-blocks-format-dot' and then use
  62. ;; `org-export-blocks-add-block' to add your block type to
  63. ;; `org-export-blocks'.
  64. ;;; Code:
  65. (eval-when-compile
  66. (require 'cl))
  67. (require 'find-func)
  68. (require 'org-compat)
  69. (declare-function org-split-string "org" (string &optional separators))
  70. (declare-function org-remove-indentation "org" (code &optional n))
  71. (defvar org-protecting-blocks nil) ; From org.el
  72. (defun org-export-blocks-set (var value)
  73. "Set the value of `org-export-blocks' and install fontification."
  74. (set var value)
  75. (mapc (lambda (spec)
  76. (if (nth 2 spec)
  77. (setq org-protecting-blocks
  78. (delete (symbol-name (car spec))
  79. org-protecting-blocks))
  80. (add-to-list 'org-protecting-blocks
  81. (symbol-name (car spec)))))
  82. value))
  83. (defcustom org-export-blocks
  84. '((export-comment org-export-blocks-format-comment t)
  85. (ditaa org-export-blocks-format-ditaa nil)
  86. (dot org-export-blocks-format-dot nil))
  87. "Use this alist to associate block types with block exporting functions.
  88. The type of a block is determined by the text immediately
  89. following the '#+BEGIN_' portion of the block header. Each block
  90. export function should accept three arguments."
  91. :group 'org-export-general
  92. :type '(repeat
  93. (list
  94. (symbol :tag "Block name")
  95. (function :tag "Block formatter")
  96. (boolean :tag "Fontify content as Org syntax")))
  97. :set 'org-export-blocks-set)
  98. (defun org-export-blocks-add-block (block-spec)
  99. "Add a new block type to `org-export-blocks'.
  100. BLOCK-SPEC should be a three element list the first element of
  101. which should indicate the name of the block, the second element
  102. should be the formatting function called by
  103. `org-export-blocks-preprocess' and the third element a flag
  104. indicating whether these types of blocks should be fontified in
  105. org-mode buffers (see `org-protecting-blocks'). For example the
  106. BLOCK-SPEC for ditaa blocks is as follows.
  107. (ditaa org-export-blocks-format-ditaa nil)"
  108. (unless (member block-spec org-export-blocks)
  109. (setq org-export-blocks (cons block-spec org-export-blocks))
  110. (org-export-blocks-set 'org-export-blocks org-export-blocks)))
  111. (defcustom org-export-interblocks
  112. '()
  113. "Use this a-list to associate block types with block exporting functions.
  114. The type of a block is determined by the text immediately
  115. following the '#+BEGIN_' portion of the block header. Each block
  116. export function should accept three arguments."
  117. :group 'org-export-general
  118. :type 'alist)
  119. (defcustom org-export-blocks-witheld
  120. '(hidden)
  121. "List of block types (see `org-export-blocks') which should not be exported."
  122. :group 'org-export-general
  123. :type 'list)
  124. (defcustom org-export-blocks-postblock-hook nil
  125. "Run after blocks have been processed with `org-export-blocks-preprocess'."
  126. :group 'org-export-general
  127. :version "24.1"
  128. :type 'hook)
  129. (defun org-export-blocks-html-quote (body &optional open close)
  130. "Protect BODY from org html export.
  131. The optional OPEN and CLOSE tags will be inserted around BODY."
  132. (concat
  133. "\n#+BEGIN_HTML\n"
  134. (or open "")
  135. body (if (string-match "\n$" body) "" "\n")
  136. (or close "")
  137. "#+END_HTML\n"))
  138. (defun org-export-blocks-latex-quote (body &optional open close)
  139. "Protect BODY from org latex export.
  140. The optional OPEN and CLOSE tags will be inserted around BODY."
  141. (concat
  142. "\n#+BEGIN_LaTeX\n"
  143. (or open "")
  144. body (if (string-match "\n$" body) "" "\n")
  145. (or close "")
  146. "#+END_LaTeX\n"))
  147. (defvar org-src-preserve-indentation) ; From org-src.el
  148. (defun org-export-blocks-preprocess ()
  149. "Export all blocks according to the `org-export-blocks' block export alist.
  150. Does not export block types specified in specified in BLOCKS
  151. which defaults to the value of `org-export-blocks-witheld'."
  152. (interactive)
  153. (save-window-excursion
  154. (let ((case-fold-search t)
  155. (interblock (lambda (start end)
  156. (mapcar (lambda (pair) (funcall (second pair) start end))
  157. org-export-interblocks)))
  158. matched indentation type types func
  159. start end body headers preserve-indent progress-marker)
  160. (goto-char (point-min))
  161. (setq start (point))
  162. (let ((beg-re "^\\([ \t]*\\)#\\+begin_\\(\\S-+\\)[ \t]*\\(.*\\)?[\r\n]"))
  163. (while (re-search-forward beg-re nil t)
  164. (let* ((match-start (copy-marker (match-beginning 0)))
  165. (body-start (copy-marker (match-end 0)))
  166. (indentation (length (match-string 1)))
  167. (inner-re (format "^[ \t]*#\\+\\(begin\\|end\\)_%s"
  168. (regexp-quote (downcase (match-string 2)))))
  169. (type (intern (downcase (match-string 2))))
  170. (headers (save-match-data
  171. (org-split-string (match-string 3) "[ \t]+")))
  172. (balanced 1)
  173. (preserve-indent (or org-src-preserve-indentation
  174. (member "-i" headers)))
  175. match-end)
  176. (while (and (not (zerop balanced))
  177. (re-search-forward inner-re nil t))
  178. (if (string= (downcase (match-string 1)) "end")
  179. (decf balanced)
  180. (incf balanced)))
  181. (when (not (zerop balanced))
  182. (error "Unbalanced begin/end_%s blocks with %S"
  183. type (buffer-substring match-start (point))))
  184. (setq match-end (copy-marker (match-end 0)))
  185. (unless preserve-indent
  186. (setq body (save-match-data (org-remove-indentation
  187. (buffer-substring
  188. body-start (match-beginning 0))))))
  189. (unless (memq type types) (setq types (cons type types)))
  190. (save-match-data (funcall interblock start match-start))
  191. (when (setq func (cadr (assoc type org-export-blocks)))
  192. (let ((replacement (save-match-data
  193. (if (memq type org-export-blocks-witheld) ""
  194. (apply func body headers)))))
  195. ;; ;; un-comment this code after the org-element merge
  196. ;; (save-match-data
  197. ;; (when (and replacement (string= replacement ""))
  198. ;; (delete-region
  199. ;; (car (org-element-collect-affiliated-keyword))
  200. ;; match-start)))
  201. (when replacement
  202. (delete-region match-start match-end)
  203. (goto-char match-start) (insert replacement)
  204. (if preserve-indent
  205. ;; indent only the code block markers
  206. (save-excursion
  207. (indent-line-to indentation) ; indent end_block
  208. (goto-char match-start)
  209. (indent-line-to indentation)) ; indent begin_block
  210. ;; indent everything
  211. (indent-code-rigidly match-start (point) indentation)))))
  212. ;; cleanup markers
  213. (set-marker match-start nil)
  214. (set-marker body-start nil)
  215. (set-marker match-end nil))
  216. (setq start (point))))
  217. (funcall interblock start (point-max))
  218. (run-hooks 'org-export-blocks-postblock-hook))))
  219. ;;================================================================================
  220. ;; type specific functions
  221. ;;--------------------------------------------------------------------------------
  222. ;; ditaa: create images from ASCII art using the ditaa utility
  223. (defcustom org-ditaa-jar-path (expand-file-name
  224. "ditaa.jar"
  225. (file-name-as-directory
  226. (expand-file-name
  227. "scripts"
  228. (file-name-as-directory
  229. (expand-file-name
  230. "../contrib"
  231. (file-name-directory (org-find-library-dir "org")))))))
  232. "Path to the ditaa jar executable."
  233. :group 'org-babel
  234. :type 'string)
  235. (defvar org-export-current-backend) ; dynamically bound in org-exp.el
  236. (defun org-export-blocks-format-ditaa (body &rest headers)
  237. "DEPRECATED: use begin_src ditaa code blocks
  238. Pass block BODY to the ditaa utility creating an image.
  239. Specify the path at which the image should be saved as the first
  240. element of headers, any additional elements of headers will be
  241. passed to the ditaa utility as command line arguments."
  242. (message "begin_ditaa blocks are DEPRECATED, use begin_src blocks")
  243. (let* ((args (if (cdr headers) (mapconcat 'identity (cdr headers) " ")))
  244. (data-file (make-temp-file "org-ditaa"))
  245. (hash (progn
  246. (set-text-properties 0 (length body) nil body)
  247. (sha1 (prin1-to-string (list body args)))))
  248. (raw-out-file (if headers (car headers)))
  249. (out-file-parts (if (string-match "\\(.+\\)\\.\\([^\\.]+\\)$" raw-out-file)
  250. (cons (match-string 1 raw-out-file)
  251. (match-string 2 raw-out-file))
  252. (cons raw-out-file "png")))
  253. (out-file (concat (car out-file-parts) "_" hash "." (cdr out-file-parts))))
  254. (unless (file-exists-p org-ditaa-jar-path)
  255. (error (format "Could not find ditaa.jar at %s" org-ditaa-jar-path)))
  256. (setq body (if (string-match "^\\([^:\\|:[^ ]\\)" body)
  257. body
  258. (mapconcat (lambda (x) (substring x (if (> (length x) 1) 2 1)))
  259. (org-split-string body "\n")
  260. "\n")))
  261. (prog1
  262. (cond
  263. ((member org-export-current-backend '(html latex docbook))
  264. (unless (file-exists-p out-file)
  265. (mapc ;; remove old hashed versions of this file
  266. (lambda (file)
  267. (when (and (string-match (concat (regexp-quote (car out-file-parts))
  268. "_\\([[:alnum:]]+\\)\\."
  269. (regexp-quote (cdr out-file-parts)))
  270. file)
  271. (= (length (match-string 1 out-file)) 40))
  272. (delete-file (expand-file-name file
  273. (file-name-directory out-file)))))
  274. (directory-files (or (file-name-directory out-file)
  275. default-directory)))
  276. (with-temp-file data-file (insert body))
  277. (message (concat "java -jar " org-ditaa-jar-path " " args " " data-file " " out-file))
  278. (shell-command (concat "java -jar " org-ditaa-jar-path " " args " " data-file " " out-file)))
  279. (format "\n[[file:%s]]\n" out-file))
  280. (t (concat
  281. "\n#+BEGIN_EXAMPLE\n"
  282. body (if (string-match "\n$" body) "" "\n")
  283. "#+END_EXAMPLE\n")))
  284. (message "begin_ditaa blocks are DEPRECATED, use begin_src blocks"))))
  285. ;;--------------------------------------------------------------------------------
  286. ;; dot: create graphs using the dot graphing language
  287. ;; (require the dot executable to be in your path)
  288. (defun org-export-blocks-format-dot (body &rest headers)
  289. "DEPRECATED: use \"#+begin_src dot\" code blocks
  290. Pass block BODY to the dot graphing utility creating an image.
  291. Specify the path at which the image should be saved as the first
  292. element of headers, any additional elements of headers will be
  293. passed to the dot utility as command line arguments. Don't
  294. forget to specify the output type for the dot command, so if you
  295. are exporting to a file with a name like 'image.png' you should
  296. include a '-Tpng' argument, and your block should look like the
  297. following.
  298. #+begin_dot models.png -Tpng
  299. digraph data_relationships {
  300. \"data_requirement\" [shape=Mrecord, label=\"{DataRequirement|description\lformat\l}\"]
  301. \"data_product\" [shape=Mrecord, label=\"{DataProduct|name\lversion\lpoc\lformat\l}\"]
  302. \"data_requirement\" -> \"data_product\"
  303. }
  304. #+end_dot"
  305. (message "begin_dot blocks are DEPRECATED, use begin_src blocks")
  306. (let* ((args (if (cdr headers) (mapconcat 'identity (cdr headers) " ")))
  307. (data-file (make-temp-file "org-ditaa"))
  308. (hash (progn
  309. (set-text-properties 0 (length body) nil body)
  310. (sha1 (prin1-to-string (list body args)))))
  311. (raw-out-file (if headers (car headers)))
  312. (out-file-parts (if (string-match "\\(.+\\)\\.\\([^\\.]+\\)$" raw-out-file)
  313. (cons (match-string 1 raw-out-file)
  314. (match-string 2 raw-out-file))
  315. (cons raw-out-file "png")))
  316. (out-file (concat (car out-file-parts) "_" hash "." (cdr out-file-parts))))
  317. (prog1
  318. (cond
  319. ((member org-export-current-backend '(html latex docbook))
  320. (unless (file-exists-p out-file)
  321. (mapc ;; remove old hashed versions of this file
  322. (lambda (file)
  323. (when (and (string-match (concat (regexp-quote (car out-file-parts))
  324. "_\\([[:alnum:]]+\\)\\."
  325. (regexp-quote (cdr out-file-parts)))
  326. file)
  327. (= (length (match-string 1 out-file)) 40))
  328. (delete-file (expand-file-name file
  329. (file-name-directory out-file)))))
  330. (directory-files (or (file-name-directory out-file)
  331. default-directory)))
  332. (with-temp-file data-file (insert body))
  333. (message (concat "dot " data-file " " args " -o " out-file))
  334. (shell-command (concat "dot " data-file " " args " -o " out-file)))
  335. (format "\n[[file:%s]]\n" out-file))
  336. (t (concat
  337. "\n#+BEGIN_EXAMPLE\n"
  338. body (if (string-match "\n$" body) "" "\n")
  339. "#+END_EXAMPLE\n")))
  340. (message "begin_dot blocks are DEPRECATED, use begin_src blocks"))))
  341. ;;--------------------------------------------------------------------------------
  342. ;; comment: export comments in author-specific css-stylable divs
  343. (defun org-export-blocks-format-comment (body &rest headers)
  344. "Format comment BODY by OWNER and return it formatted for export.
  345. Currently, this only does something for HTML export, for all
  346. other backends, it converts the comment into an EXAMPLE segment."
  347. (let ((owner (if headers (car headers)))
  348. (title (if (cdr headers) (mapconcat 'identity (cdr headers) " "))))
  349. (cond
  350. ((eq org-export-current-backend 'html) ;; We are exporting to HTML
  351. (concat "#+BEGIN_HTML\n"
  352. "<div class=\"org-comment\""
  353. (if owner (format " id=\"org-comment-%s\" " owner))
  354. ">\n"
  355. (if owner (concat "<b>" owner "</b> ") "")
  356. (if (and title (> (length title) 0)) (concat " -- " title "<br/>\n") "<br/>\n")
  357. "<p>\n"
  358. "#+END_HTML\n"
  359. body
  360. "\n#+BEGIN_HTML\n"
  361. "</p>\n"
  362. "</div>\n"
  363. "#+END_HTML\n"))
  364. (t ;; This is not HTML, so just make it an example.
  365. (concat "#+BEGIN_EXAMPLE\n"
  366. (if title (concat "Title:" title "\n") "")
  367. (if owner (concat "By:" owner "\n") "")
  368. body
  369. (if (string-match "\n\\'" body) "" "\n")
  370. "#+END_EXAMPLE\n")))))
  371. (provide 'org-exp-blocks)
  372. ;;; org-exp-blocks.el ends here