123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186 |
- (eval-when-compile
- (require 'cl))
- (defun org-export-parse (&optional level)
- "Parse the current buffer.
- Return a nested list reflecting the sectioning structure of the
- file and containing all information about each section, including
- its content."
- (let (output eos)
- (save-excursion
- (goto-char (point-min))
- (while (re-search-forward org-complex-heading-regexp nil t)
- (let ((heading (match-string 4))
- (properties (org-entry-properties)))
- (save-restriction
- (narrow-to-region (if (looking-at "\n") (1+ (point)) (point))
- (save-excursion
- (setq eos (org-end-of-subtree t t))))
- (setq output
- (append output
- (list
- (list :level (or level 1)
- :heading heading
- :properties properties
- :content (org-export-parse-clean-content-string
- (org-export-parse-content))
- :subtree (org-export-parse
- (if level (1+ level) 2)))))))
- (goto-char (1- eos)))))
- output))
- (defun org-export-parse-content ()
- "Extract the content of a section.
- The content of a section is the part before a subtree."
- (save-excursion
- (goto-char (point-min))
- (buffer-substring
- (point)
- (if (re-search-forward org-complex-heading-regexp nil t)
- (match-beginning 0) (point-max)))))
- (defun org-export-parse-clean-content-string (s)
- "From the content string S, remove stuff also captured by get-properties.
- So this will remove the clock drawer, the property drawer, and the lines
- with planning info (DEADLINE, SCHEDULED, CLOSED)."
- (if (string-match org-property-drawer-re s)
- (setq s (replace-match "" t t s)))
- (if (string-match org-clock-drawer-re s)
- (setq s (replace-match "" t t s)))
- (while (string-match (concat org-keyword-time-regexp ".*\n?") s)
- (setq s (replace-match "" t t s)))
- s)
- (defun org-export-buffer (filter struct-backend content-backend)
- "Render the current buffer.
- It first parses the current buffer into a list. Then it filters
- this list with FILTER. Finally it uses STRUCT-BACKEND and
- CONTENT-BACKEND to render the structure of the buffer and the
- content of each section."
- (save-excursion
- (let* ((props (org-combine-plists
- (org-default-export-plist)
- (org-infile-export-plist)))
- (first-lines (org-export-parse-content))
- (parsed-buffer (org-export-parse)))
- (switch-to-buffer (get-buffer-create "*Org export*"))
- (erase-buffer)
- (funcall (cdr (assoc 'header struct-backend)) props)
- (funcall (cdr (assoc 'first-lines struct-backend))
- first-lines props)
- (org-export-render-structure parsed-buffer props filter
- struct-backend content-backend)
- (funcall (cdr (assoc 'footer struct-backend)) props))))
- (defun org-export-render-structure
- (parsed-buffer props filter struct-backend content-backend)
- "Render PARSED-BUFFER.
- The optional argument FILTER specifies a filter to pass to the
- rendering engine."
- (mapc (lambda(s)
- (funcall (cdr (assoc 'section-beginning struct-backend)) s)
- (funcall (cdr (assoc 'heading struct-backend)) s)
- (insert (org-export-render-content s props content-backend) "\n\n")
- (org-export-render-structure (plist-get s :subtree) props
- filter struct-backend content-backend)
- (funcall (cdr (assoc 'section-end struct-backend)) s))
- (org-export-filter parsed-buffer filter)))
- (defun org-export-render-content (section props content-backend)
- "Render SECTION with PROPS. SECTION is the property list
- defining the information for the section. PROPS is the property
- list defining information for the current export.
- CONTENT-BACKEND is an association list defining possible
- exporting directive the content of this section."
- (with-temp-buffer
- (insert (plist-get section :content))
- (if (not (plist-get props :with-comment))
- (funcall (cdr (assoc 'comment content-backend))))
- (buffer-string)))
- (defun org-export-strip-drawer ()
- "Strip DRAWERS in the current buffer.
- Stripped drawers are those matched by `org-drawer-regexp'."
- (save-excursion
- (while (re-search-forward org-drawer-regexp nil t)
- (let ((beg (match-beginning 0))
- (end (and (search-forward ":END:" nil t)
- (match-end 0))))
- (delete-region beg end)))))
- (defun org-export-filter (parsed-buffer filter)
- "Filter out PARSED-BUFFER with FILTER.
- PARSED-BUFFER is a nested list a sections and subsections, as
- produced by `org-export-parse'. FILTER is an alist of rules to
- apply to PARSED-BUFFER. For the syntax of a filter, please check
- the docstring of `org-export-latex-filter'."
- (delete
- nil
- (mapcar
- (lambda(s)
- (if (delete
- nil
- (mapcar
- (lambda(f)
- (let ((cnd (car f)) (re (cadr f)) prop-cnd)
- (or (and (eq cnd 'heading)
- (string-match re (plist-get s :heading)))
- (and (eq cnd 'content)
- (string-match re (plist-get s :content)))
- (and (setq prop-cnd
- (assoc cnd (plist-get s :properties)))
- (string-match re (cadr prop-cnd))))))
- filter))
- nil
- (progn (plist-put s :subtree
- (org-export-filter (plist-get s :subtree) filter))
- s)))
- parsed-buffer)))
- (provide 'org-export)
|