summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Goaziou <mail@nicolasgoaziou.fr>2016-01-06 22:50:22 +0100
committerNicolas Goaziou <mail@nicolasgoaziou.fr>2016-01-06 22:50:22 +0100
commitf4ffbccf64470858e3d0ad77fa6ab65a0732898d (patch)
treeb4cac33aa51e6a4e98a3ca5d1fcf7c62d88e6d85
parent74c46ad0067ebf337f74ece4a86973c83adc7afa (diff)
downloadorg-mode-f4ffbccf64470858e3d0ad77fa6ab65a0732898d.tar.gz
Remove left-over :export-block keywords
* contrib/lisp/ox-freemind.el (freemind): * contrib/lisp/ox-gfm.el (gfm): * contrib/lisp/ox-groff.el (groff): Remove :export-block keyword. * doc/org.texi (Adding export back-ends): Remove documentation about the keyword. Reported-by: Kaushal Modi <kaushal.modi@gmail.com> <http://permalink.gmane.org/gmane.emacs.orgmode/104057>
-rw-r--r--contrib/lisp/ox-freemind.el1
-rw-r--r--contrib/lisp/ox-gfm.el1
-rw-r--r--contrib/lisp/ox-groff.el1
-rw-r--r--doc/org.texi7
4 files changed, 3 insertions, 7 deletions
diff --git a/contrib/lisp/ox-freemind.el b/contrib/lisp/ox-freemind.el
index 3287d5d..c974bb0 100644
--- a/contrib/lisp/ox-freemind.el
+++ b/contrib/lisp/ox-freemind.el
@@ -43,7 +43,6 @@
;;; Define Back-End
(org-export-define-derived-backend 'freemind 'html
- :export-block "FREEMIND"
:menu-entry
'(?f "Export to Freemind Mindmap"
((?f "As Freemind Mindmap file" org-freemind-export-to-freemind)
diff --git a/contrib/lisp/ox-gfm.el b/contrib/lisp/ox-gfm.el
index f7acc94..f519a35 100644
--- a/contrib/lisp/ox-gfm.el
+++ b/contrib/lisp/ox-gfm.el
@@ -51,7 +51,6 @@
;;; Define Back-End
(org-export-define-derived-backend 'gfm 'md
- :export-block '("GFM" "GITHUB FLAVORED MARKDOWN")
:filters-alist '((:filter-parse-tree . org-md-separate-elements))
:menu-entry
'(?g "Export to Github Flavored Markdown"
diff --git a/contrib/lisp/ox-groff.el b/contrib/lisp/ox-groff.el
index ade3478..732b447 100644
--- a/contrib/lisp/ox-groff.el
+++ b/contrib/lisp/ox-groff.el
@@ -92,7 +92,6 @@
(underline . org-groff-underline)
(verbatim . org-groff-verbatim)
(verse-block . org-groff-verse-block))
- :export-block "GROFF"
:menu-entry
'(?g "Export to GROFF"
((?g "As GROFF file" org-groff-export-to-groff)
diff --git a/doc/org.texi b/doc/org.texi
index 14ac5ee..0cfef67 100644
--- a/doc/org.texi
+++ b/doc/org.texi
@@ -17967,10 +17967,9 @@ back-end from an existing one.
When creating a new back-end from scratch, the basic idea is to set the name
of the back-end (as a symbol) and an alist of elements and export functions.
On top of this, you will need to set additional keywords like
-@code{:menu-entry} (to display the back-end in the export dispatcher),
-@code{:export-block} (to specify what blocks should not be exported by this
-back-end), and @code{:options-alist} (to let the user set export options that
-are specific to this back-end.)
+@code{:menu-entry} (to display the back-end in the export dispatcher), and
+@code{:options-alist} (to let the user set export options that are specific
+to this back-end.)
Deriving a new back-end is similar, except that you need to set
@code{:translate-alist} to an alist of export functions that should be used