mirror of
https://git.savannah.gnu.org/git/emacs/org-mode.git
synced 2024-11-23 07:18:53 +00:00
Add ability to remove #+begin_example blocks of output.
This commit is contained in:
parent
c2b255e0da
commit
bcfa3b95c7
@ -451,11 +451,15 @@ relies on `org-babel-insert-result'."
|
||||
(save-excursion
|
||||
(if (org-at-table-p)
|
||||
(org-table-end)
|
||||
(while (if (looking-at "\\(: \\|\\[\\[\\)")
|
||||
(progn (while (looking-at "\\(: \\|\\[\\[\\)")
|
||||
(forward-line 1)) t))
|
||||
(forward-line 1))
|
||||
(forward-line -1)
|
||||
(let ((case-fold-search nil))
|
||||
(if (looking-at-p "#\\+begin_example")
|
||||
(search-forward "#+end_example" nil t)
|
||||
(progn
|
||||
(while (if (looking-at "\\(: \\|\\[\\[\\)")
|
||||
(progn (while (looking-at "\\(: \\|\\[\\[\\)")
|
||||
(forward-line 1)) t))
|
||||
(forward-line 1))
|
||||
(forward-line -1))))
|
||||
(point))))
|
||||
|
||||
(defun org-babel-result-to-file (result)
|
||||
|
Loading…
Reference in New Issue
Block a user