mirror of
https://git.savannah.gnu.org/git/emacs/org-mode.git
synced 2025-01-05 11:45:52 +00:00
Export: Fix bug with exporting text before first heading
Skipping text before the first heading was broken, now it works again.
This commit is contained in:
parent
44ed0394c4
commit
477141d43c
@ -1,5 +1,8 @@
|
||||
2009-02-06 Carsten Dominik <carsten.dominik@gmail.com>
|
||||
|
||||
* org-exp.el (org-export-preprocess-string): Fix bug when skipping
|
||||
text before first headline.
|
||||
|
||||
* org.el (org-format-latex): Do not convert LaTeX fragments in
|
||||
protected examples.
|
||||
|
||||
|
@ -1538,7 +1538,7 @@ on this string to produce the exported version."
|
||||
;; Get the correct stuff before the first headline
|
||||
(when (plist-get parameters :skip-before-1st-heading)
|
||||
(goto-char (point-min))
|
||||
(when (re-search-forward "\\(^#.*\n\\)^\\*+[ \t]" nil t)
|
||||
(when (re-search-forward "^\\(#.*\n\\)?\\*+[ \t]" nil t)
|
||||
(delete-region (point-min) (match-beginning 0))
|
||||
(goto-char (point-min))
|
||||
(insert "\n")))
|
||||
|
Loading…
Reference in New Issue
Block a user