;;;###autoload
(defun org-e-ascii-export-to-ascii
- (&optional subtreep visible-only body-only ext-plist pub-dir)
+ (&optional subtreep visible-only body-only ext-plist)
"Export current buffer to a text file.
If narrowing is active in the current buffer, only export its
parameters overriding Org default settings, but still inferior to
file-local settings.
-When optional argument PUB-DIR is set, use it as the publishing
-directory.
-
Return output file's name."
(interactive)
- (let ((outfile (org-export-output-file-name ".txt" subtreep pub-dir)))
+ (let ((outfile (org-export-output-file-name ".txt" subtreep)))
(org-export-to-file
'e-ascii outfile subtreep visible-only body-only ext-plist)))
;;;###autoload
(defun org-e-beamer-export-to-latex
- (&optional subtreep visible-only body-only ext-plist pub-dir)
+ (&optional subtreep visible-only body-only ext-plist)
"Export current buffer as a Beamer presentation (tex).
If narrowing is active in the current buffer, only export its
parameters overriding Org default settings, but still inferior to
file-local settings.
-When optional argument PUB-DIR is set, use it as the publishing
-directory.
-
Return output file's name."
(interactive)
- (let ((outfile (org-export-output-file-name ".tex" subtreep pub-dir)))
+ (let ((outfile (org-export-output-file-name ".tex" subtreep)))
(org-export-to-file
'e-beamer outfile subtreep visible-only body-only ext-plist)))
;;;###autoload
(defun org-e-beamer-export-to-pdf
- (&optional subtreep visible-only body-only ext-plist pub-dir)
+ (&optional subtreep visible-only body-only ext-plist)
"Export current buffer as a Beamer presentation (PDF).
If narrowing is active in the current buffer, only export its
parameters overriding Org default settings, but still inferior to
file-local settings.
-When optional argument PUB-DIR is set, use it as the publishing
-directory.
-
Return PDF file's name."
(interactive)
(org-e-latex-compile
- (org-e-beamer-export-to-latex
- subtreep visible-only body-only ext-plist pub-dir)))
+ (org-e-beamer-export-to-latex subtreep visible-only body-only ext-plist)))
;;;###autoload
(defun org-e-beamer-select-environment ()
;;; Interactive functions
(defun org-e-groff-export-to-groff
- (&optional subtreep visible-only body-only ext-plist pub-dir)
+ (&optional subtreep visible-only body-only ext-plist)
"Export current buffer to a Groff file.
If narrowing is active in the current buffer, only export its
parameters overriding Org default settings, but still inferior to
file-local settings.
-When optional argument PUB-DIR is set, use it as the publishing
-directory.
-
Return output file's name."
(interactive)
(setq org-e-groff-registered-references nil)
(setq org-e-groff-special-content nil)
- (let ((outfile (org-export-output-file-name ".groff" subtreep pub-dir)))
+ (let ((outfile (org-export-output-file-name ".groff" subtreep)))
(org-export-to-file
'e-groff outfile subtreep visible-only body-only ext-plist)))
(defun org-e-groff-export-to-pdf
- (&optional subtreep visible-only body-only ext-plist pub-dir)
+ (&optional subtreep visible-only body-only ext-plist)
"Export current buffer to Groff then process through to PDF.
If narrowing is active in the current buffer, only export its
parameters overriding Org default settings, but still inferior to
file-local settings.
-When optional argument PUB-DIR is set, use it as the publishing
-directory.
-
Return PDF file's name."
(interactive)
(org-e-groff-compile
- (org-e-groff-export-to-groff
- subtreep visible-only body-only ext-plist pub-dir)))
+ (org-e-groff-export-to-groff subtreep visible-only body-only ext-plist)))
(defun org-e-groff-compile (file)
"Compile a Groff file.
;;;###autoload
(defun org-e-html-export-to-html
- (&optional subtreep visible-only body-only ext-plist pub-dir)
+ (&optional subtreep visible-only body-only ext-plist)
"Export current buffer to a HTML file.
If narrowing is active in the current buffer, only export its
parameters overriding Org default settings, but still inferior to
file-local settings.
-When optional argument PUB-DIR is set, use it as the publishing
-directory.
-
Return output file's name."
(interactive)
(let* ((extension (concat "." org-e-html-extension))
- (file (org-export-output-file-name extension subtreep pub-dir))
+ (file (org-export-output-file-name extension subtreep))
(org-export-coding-system org-e-html-coding-system))
(org-export-to-file
'e-html file subtreep visible-only body-only ext-plist)))
;;;###autoload
(defun org-e-latex-export-to-latex
- (&optional subtreep visible-only body-only ext-plist pub-dir)
+ (&optional subtreep visible-only body-only ext-plist)
"Export current buffer to a LaTeX file.
If narrowing is active in the current buffer, only export its
parameters overriding Org default settings, but still inferior to
file-local settings.
-When optional argument PUB-DIR is set, use it as the publishing
-directory.
-
Return output file's name."
(interactive)
- (let ((outfile (org-export-output-file-name ".tex" subtreep pub-dir)))
+ (let ((outfile (org-export-output-file-name ".tex" subtreep)))
(org-export-to-file
'e-latex outfile subtreep visible-only body-only ext-plist)))
;;;###autoload
(defun org-e-latex-export-to-pdf
- (&optional subtreep visible-only body-only ext-plist pub-dir)
+ (&optional subtreep visible-only body-only ext-plist)
"Export current buffer to LaTeX then process through to PDF.
If narrowing is active in the current buffer, only export its
parameters overriding Org default settings, but still inferior to
file-local settings.
-When optional argument PUB-DIR is set, use it as the publishing
-directory.
-
Return PDF file's name."
(interactive)
(org-e-latex-compile
- (org-e-latex-export-to-latex
- subtreep visible-only body-only ext-plist pub-dir)))
+ (org-e-latex-export-to-latex subtreep visible-only body-only ext-plist)))
(defun org-e-latex-compile (texfile)
"Compile a TeX file.
;;; Interactive functions
(defun org-e-man-export-to-man
- (&optional subtreep visible-only body-only ext-plist pub-dir)
+ (&optional subtreep visible-only body-only ext-plist)
"Export current buffer to a Man file.
If narrowing is active in the current buffer, only export its
parameters overriding Org default settings, but still inferior to
file-local settings.
-When optional argument PUB-DIR is set, use it as the publishing
-directory.
-
Return output file's name."
(interactive)
- (let ((outfile (org-export-output-file-name ".man" subtreep pub-dir)))
+ (let ((outfile (org-export-output-file-name ".man" subtreep)))
(org-export-to-file
'e-man outfile subtreep visible-only body-only ext-plist)))
(defun org-e-man-export-to-pdf
- (&optional subtreep visible-only body-only ext-plist pub-dir)
+ (&optional subtreep visible-only body-only ext-plist)
"Export current buffer to Groff then process through to PDF.
If narrowing is active in the current buffer, only export its
parameters overriding Org default settings, but still inferior to
file-local settings.
-When optional argument PUB-DIR is set, use it as the publishing
-directory.
-
Return PDF file's name."
(interactive)
(org-e-man-compile
- (org-e-man-export-to-man
- subtreep visible-only body-only ext-plist pub-dir)))
+ (org-e-man-export-to-man subtreep visible-only body-only ext-plist)))
(defun org-e-man-compile (file)
"Compile a Groff file.
;;;###autoload
(defun org-e-odt-export-to-odt
- (&optional subtreep visible-only body-only ext-plist pub-dir)
+ (&optional subtreep visible-only body-only ext-plist)
"Export current buffer to a HTML file.
If narrowing is active in the current buffer, only export its
parameters overriding Org default settings, but still inferior to
file-local settings.
-When optional argument PUB-DIR is set, use it as the publishing
-directory.
-
Return output file's name."
(interactive)
(org-e-odt--export-wrap
- (org-export-output-file-name ".odt" subtreep pub-dir)
+ (org-export-output-file-name ".odt" subtreep)
(let* ((org-e-odt-embedded-images-count 0)
(org-e-odt-embedded-formulas-count 0)
(org-e-odt-automatic-styles nil)
;;; Interactive functions
(defun org-e-texinfo-export-to-texinfo
- (&optional subtreep visible-only body-only ext-plist pub-dir)
+ (&optional subtreep visible-only body-only ext-plist)
"Export current buffer to a Texinfo file.
If narrowing is active in the current buffer, only export its
parameters overriding Org default settings, but still inferior to
file-local settings.
-When optional argument PUB-DIR is set, use it as the publishing
-directory.
-
Return output file's name."
(interactive)
- (let ((outfile (org-export-output-file-name ".texi" subtreep pub-dir)))
+ (let ((outfile (org-export-output-file-name ".texi" subtreep)))
(org-export-to-file
'e-texinfo outfile subtreep visible-only body-only ext-plist)))
(defun org-e-texinfo-export-to-info
- (&optional subtreep visible-only body-only ext-plist pub-dir)
+ (&optional subtreep visible-only body-only ext-plist)
"Export current buffer to Texinfo then process through to INFO.
If narrowing is active in the current buffer, only export its
Return INFO file's name."
(interactive)
(org-e-texinfo-compile
- (org-e-texinfo-export-to-texinfo
- subtreep visible-only body-only ext-plist pub-dir)))
+ (org-e-texinfo-export-to-texinfo subtreep visible-only body-only ext-plist)))
(defun org-e-texinfo-compile (file)
"Compile a texinfo file.
;;;###autoload
(defun org-koma-letter-export-to-latex
- (&optional subtreep visible-only body-only ext-plist pub-dir)
+ (&optional subtreep visible-only body-only ext-plist)
"Export current buffer as a KOMA Scrlttr2 letter (tex).
If narrowing is active in the current buffer, only export its
Return output file's name."
(interactive)
- (let ((outfile (org-export-output-file-name ".tex" subtreep pub-dir)))
+ (let ((outfile (org-export-output-file-name ".tex" subtreep)))
(org-export-to-file
'koma-letter outfile subtreep visible-only body-only ext-plist)))
;;;###autoload
(defun org-koma-letter-export-to-pdf
- (&optional subtreep visible-only body-only ext-plist pub-dir)
+ (&optional subtreep visible-only body-only ext-plist)
"Export current buffer as a KOMA Scrlttr2 letter (pdf).
If narrowing is active in the current buffer, only export its
parameters overriding Org default settings, but still inferior to
file-local settings.
-When optional argument PUB-DIR is set, use it as the publishing
-directory.
-
Return PDF file's name."
(interactive)
(org-e-latex-compile
- (org-koma-letter-export-to-latex
- subtreep visible-only body-only ext-plist pub-dir)))
+ (org-koma-letter-export-to-latex subtreep visible-only body-only ext-plist)))
(provide 'org-koma-letter)
;;; org-koma-letter.el ends here
;;;###autoload
-(defun org-md-export-to-markdown (&optional subtreep visible-only pub-dir)
+(defun org-md-export-to-markdown (&optional subtreep visible-only)
"Export current buffer to a Markdown file.
If narrowing is active in the current buffer, only export its
When optional argument VISIBLE-ONLY is non-nil, don't export
contents of hidden elements.
-When optional argument PUB-DIR is set, use it as the publishing
-directory.
-
Return output file's name."
(interactive)
- (let ((outfile (org-export-output-file-name ".md" subtreep pub-dir)))
+ (let ((outfile (org-export-output-file-name ".md" subtreep)))
(org-export-to-file 'md outfile subtreep visible-only)))