Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
372d7b21
Commit
372d7b21
authored
Apr 03, 2012
by
Bastien Guerry
Browse files
Add :version tag to new Org options in Emacs 24.1
parent
5c7ac472
Changes
37
Hide whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
73 additions
and
0 deletions
+73
-0
lisp/org/ob-exp.el
lisp/org/ob-exp.el
+1
-0
lisp/org/ob-js.el
lisp/org/ob-js.el
+1
-0
lisp/org/ob-lisp.el
lisp/org/ob-lisp.el
+1
-0
lisp/org/ob-lob.el
lisp/org/ob-lob.el
+1
-0
lisp/org/ob-picolisp.el
lisp/org/ob-picolisp.el
+1
-0
lisp/org/ob-plantuml.el
lisp/org/ob-plantuml.el
+1
-0
lisp/org/ob-scheme.el
lisp/org/ob-scheme.el
+1
-0
lisp/org/ob-tangle.el
lisp/org/ob-tangle.el
+7
-0
lisp/org/ob.el
lisp/org/ob.el
+2
-0
lisp/org/org-agenda.el
lisp/org/org-agenda.el
+20
-0
lisp/org/org-archive.el
lisp/org/org-archive.el
+2
-0
lisp/org/org-attach.el
lisp/org/org-attach.el
+1
-0
lisp/org/org-beamer.el
lisp/org/org-beamer.el
+9
-0
lisp/org/org-bibtex.el
lisp/org/org-bibtex.el
+9
-0
lisp/org/org-capture.el
lisp/org/org-capture.el
+3
-0
lisp/org/org-clock.el
lisp/org/org-clock.el
+6
-0
lisp/org/org-ctags.el
lisp/org/org-ctags.el
+2
-0
lisp/org/org-docbook.el
lisp/org/org-docbook.el
+2
-0
lisp/org/org-entities.el
lisp/org/org-entities.el
+2
-0
lisp/org/org-exp-blocks.el
lisp/org/org-exp-blocks.el
+1
-0
No files found.
lisp/org/ob-exp.el
View file @
372d7b21
...
...
@@ -43,6 +43,7 @@
When set to nil no code will be evaluated as part of the export
process."
:group
'org-babel
:version
"24.1"
:type
'boolean
)
(
put
'org-export-babel-evaluate
'safe-local-variable
(
lambda
(
x
)
(
eq
x
nil
)))
...
...
lisp/org/ob-js.el
View file @
372d7b21
...
...
@@ -55,6 +55,7 @@
(
defcustom
org-babel-js-cmd
"node"
"Name of command used to evaluate js blocks."
:group
'org-babel
:version
"24.1"
:type
'string
)
(
defvar
org-babel-js-function-wrapper
...
...
lisp/org/ob-lisp.el
View file @
372d7b21
...
...
@@ -49,6 +49,7 @@
For example a value of \"(progn ;; %s\\n %%s)\" would ignore the
current directory string."
:group
'org-babel
:version
"24.1"
:type
'string
)
(
defun
org-babel-expand-body:lisp
(
body
params
)
...
...
lisp/org/ob-lob.el
View file @
372d7b21
...
...
@@ -39,6 +39,7 @@ files to `org-babel-lob-files'.")
"Files used to populate the `org-babel-library-of-babel'.
To add files to this list use the `org-babel-lob-ingest' command."
:group
'org-babel
:version
"24.1"
:type
'list
)
(
defvar
org-babel-default-lob-header-args
'
((
:exports
.
"results"
))
...
...
lisp/org/ob-picolisp.el
View file @
372d7b21
...
...
@@ -76,6 +76,7 @@
(
defcustom
org-babel-picolisp-cmd
"pil"
"Name of command used to evaluate picolisp blocks."
:group
'org-babel
:version
"24.1"
:type
'string
)
(
defun
org-babel-expand-body:picolisp
(
body
params
&optional
processed-params
)
...
...
lisp/org/ob-plantuml.el
View file @
372d7b21
...
...
@@ -44,6 +44,7 @@
(
defcustom
org-plantuml-jar-path
nil
"Path to the plantuml.jar file."
:group
'org-babel
:version
"24.1"
:type
'string
)
(
defun
org-babel-execute:plantuml
(
body
params
)
...
...
lisp/org/ob-scheme.el
View file @
372d7b21
...
...
@@ -54,6 +54,7 @@
(
defcustom
org-babel-scheme-cmd
"guile"
"Name of command used to evaluate scheme blocks."
:group
'org-babel
:version
"24.1"
:type
'string
)
(
defun
org-babel-expand-body:scheme
(
body
params
)
...
...
lisp/org/ob-tangle.el
View file @
372d7b21
...
...
@@ -47,6 +47,7 @@ be inserted as the extension commonly used to identify files
written in this language. If no entry is found in this list,
then the name of the language is used."
:group
'org-babel-tangle
:version
"24.1"
:type
'
(
repeat
(
cons
(
string
"Language name"
)
...
...
@@ -55,16 +56,19 @@ then the name of the language is used."
(
defcustom
org-babel-post-tangle-hook
nil
"Hook run in code files tangled by `org-babel-tangle'."
:group
'org-babel
:version
"24.1"
:type
'hook
)
(
defcustom
org-babel-pre-tangle-hook
'
(
save-buffer
)
"Hook run at the beginning of `org-babel-tangle'."
:group
'org-babel
:version
"24.1"
:type
'hook
)
(
defcustom
org-babel-tangle-body-hook
nil
"Hook run over the contents of each code block body."
:group
'org-babel
:version
"24.1"
:type
'hook
)
(
defcustom
org-babel-tangle-comment-format-beg
"[[%link][%source-name]]"
...
...
@@ -79,6 +83,7 @@ information into the output using `org-fill-template'.
Whether or not comments are inserted during tangling is
controlled by the :comments header argument."
:group
'org-babel
:version
"24.1"
:type
'string
)
(
defcustom
org-babel-tangle-comment-format-end
"%source-name ends here"
...
...
@@ -93,6 +98,7 @@ information into the output using `org-fill-template'.
Whether or not comments are inserted during tangling is
controlled by the :comments header argument."
:group
'org-babel
:version
"24.1"
:type
'string
)
(
defcustom
org-babel-process-comment-text
#'
org-babel-trim
...
...
@@ -101,6 +107,7 @@ inserted as comments in tangled source-code files. The function
should take a single string argument and return a string
result. The default value is `org-babel-trim'."
:group
'org-babel
:version
"24.1"
:type
'function
)
(
defun
org-babel-find-file-noselect-refresh
(
file
)
...
...
lisp/org/ob.el
View file @
372d7b21
...
...
@@ -105,6 +105,7 @@ against accidental code block evaluation. The
`org-babel-no-eval-on-ctrl-c-ctrl-c' variable can be used to
remove code block execution from the C-c C-c keybinding."
:group
'org-babel
:version
"24.1"
:type
'
(
choice
boolean
function
))
;; don't allow this variable to be changed through file settings
(
put
'org-confirm-babel-evaluate
'safe-local-variable
(
lambda
(
x
)
(
eq
x
t
)))
...
...
@@ -112,6 +113,7 @@ remove code block execution from the C-c C-c keybinding."
(
defcustom
org-babel-no-eval-on-ctrl-c-ctrl-c
nil
"Remove code block evaluation from the C-c C-c key binding."
:group
'org-babel
:version
"24.1"
:type
'boolean
)
(
defcustom
org-babel-results-keyword
"RESULTS"
...
...
lisp/org/org-agenda.el
View file @
372d7b21
...
...
@@ -649,6 +649,7 @@ See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
to make his option also apply to the tags-todo list."
:group 'org-agenda-skip
:group 'org-agenda-todo-list
:version "24.1"
:type '(choice
(const :tag "Ignore future timestamp todos" future)
(const :tag "Ignore past or present timestamp todos" past)
...
...
@@ -796,6 +797,7 @@ trigger you to schedule it, and then you don't want to be reminded of it
because you will take care of it on the day when scheduled."
:group 'org-agenda-skip
:group 'org-agenda-daily/weekly
:version "24.1"
:type '(choice
(const :tag "Alwas show prewarning" nil)
(const :tag "Remove prewarning if entry is scheduled" t)
...
...
@@ -860,6 +862,7 @@ property so than moving the mouse over the command shows it.
Setting it to nil is good if matcher strings are very long and/or if
you want to use two-column display (see `org-agenda-menu-two-column')."
:group 'org-agenda
:version "24.1"
:type 'boolean)
(defcustom org-agenda-menu-two-column nil
...
...
@@ -867,6 +870,7 @@ you want to use two-column display (see `org-agenda-menu-two-column')."
If you use this, you probably want to set `org-agenda-menu-show-matcher'
to nil."
:group 'org-agenda
:version "24.1"
:type 'boolean)
(defcustom org-finalize-agenda-hook nil
...
...
@@ -890,6 +894,7 @@ Needs to be set before org.el is loaded."
"Non-nil means `org-agenda-follow-mode' displays only the
current item's tree, in an indirect buffer."
:group 'org-agenda
:version "24.1"
:type 'boolean)
(defcustom org-agenda-show-outline-path t
...
...
@@ -1042,11 +1047,13 @@ This function makes sure that dates are aligned for easy reading."
"Non-nil means use leading zero for military times in agenda.
For example, 9:30am would become 09:30 rather than 9:30."
:group 'org-agenda-daily/weekly
:version "24.1"
:type 'boolean)
(defcustom org-agenda-timegrid-use-ampm nil
"When set, show AM/PM style timestamps on the timegrid."
:group 'org-agenda
:version "24.1"
:type 'boolean)
(defun org-agenda-time-of-day-to-ampm (time)
...
...
@@ -1094,6 +1101,7 @@ stamp currently points to the past, the first key press will move it
to today. WHen nil, just move one day forward even if the date stays
in the past."
:group 'org-agenda-daily/weekly
:version "24.1"
:type 'boolean)
(defcustom org-agenda-include-diary nil
...
...
@@ -1106,6 +1114,7 @@ Custom commands can set this variable in the options section."
"If non-nil, include entries within their deadline warning period.
Custom commands can set this variable in the options section."
:group 'org-agenda-daily/weekly
:version "24.1"
:type 'boolean)
(defcustom org-agenda-repeating-timestamp-show-all t
...
...
@@ -1181,6 +1190,7 @@ issue display.
:short-face face for clock intervals that are too short"
:group 'org-agenda-daily/weekly
:group 'org-clock
:version "24.1"
:type 'plist)
(defcustom org-agenda-log-mode-add-notes t
...
...
@@ -1239,6 +1249,7 @@ by preceding the first snippet with \"+\" or \"-\". If the first snippet
is a regexp marked with braces like \"{abc}\", this will also switch to
boolean search."
:group 'org-agenda-search-view
:version "24.1"
:type 'boolean)
(if (fboundp 'defvaralias)
...
...
@@ -1249,6 +1260,7 @@ boolean search."
"Non-nil means, search words must be matches as complete words.
When nil, they may also match part of a word."
:group 'org-agenda-search-view
:version "24.1"
:type 'boolean)
(defgroup org-agenda-time-grid nil
...
...
@@ -1312,12 +1324,14 @@ a grid line."
(defcustom org-agenda-show-current-time-in-grid t
"Non-nil means show the current time in the time grid."
:group 'org-agenda-time-grid
:version "24.1"
:type 'boolean)
(defcustom org-agenda-current-time-string
"now - - - - - - - - - - - - - - - - - - - - - - - - -"
"The string for the current time marker in the agenda."
:group 'org-agenda-time-grid
:version "24.1"
:type 'string)
(defgroup org-agenda-sorting nil
...
...
@@ -1528,6 +1542,7 @@ that passed since this item was scheduled first."
"Text preceding item pulled into the agenda by inactive time stamps.
These entries are added to the agenda when pressing \"[\"."
:group 'org-agenda-line-format
:version "24.1"
:type '(list
(string :tag "Scheduled today ")
(string :tag "Scheduled previously")))
...
...
@@ -1566,6 +1581,7 @@ the headline/diary entry."
"Non-nil means remove time ranges specifications in agenda
items that span on several days."
:group 'org-agenda-line-format
:version "24.1"
:type 'boolean)
(defcustom org-agenda-default-appointment-duration nil
...
...
@@ -1647,6 +1663,7 @@ The only argument passed to that function is the day. It should
returns a face, or nil if does not want to specify a face and let
the normal rules apply."
:group 'org-agenda-line-format
:version "24.1"
:type 'function)
(defcustom org-agenda-category-icon-alist nil
...
...
@@ -1679,6 +1696,7 @@ category, you can use:
(\"Emacs\" '(space . (:width (16))))"
:group 'org-agenda-line-format
:version "24.1"
:type '(alist :key-type (string :tag "Regexp matching category")
:value-type (choice (list :tag "Icon"
(string :tag "File or data")
...
...
@@ -1741,6 +1759,7 @@ With selected entries in an agenda buffer, `B R' will call
the custom function `set-category' on the selected entries.
Note that functions in this alist don't need to be quoted."
:type 'alist
:version "24.1"
:group 'org-agenda)
(eval-when-compile
...
...
@@ -7998,6 +8017,7 @@ top-level as top-level entries at the end of the file."
(defcustom org-agenda-insert-diary-extract-time nil
"Non-nil means extract any time specification from the diary entry."
:group 'org-agenda
:version "24.1"
:type 'boolean)
(defun org-agenda-add-entry-to-org-agenda-diary-file (type text &optional d1 d2)
...
...
lisp/org/org-archive.el
View file @
372d7b21
...
...
@@ -43,6 +43,7 @@
(
defcustom
org-archive-reversed-order
nil
"Non-nil means make the tree first child under the archive heading, not last."
:group
'org-archive
:version
"24.1"
:type
'boolean
)
(
defcustom
org-archive-sibling-heading
"Archive"
...
...
@@ -72,6 +73,7 @@ This variable is obsolete and has no effect anymore, instead add or remove
(
defcustom
org-archive-subtree-add-inherited-tags
'infile
"Non-nil means append inherited tags when archiving a subtree."
:group
'org-archive
:version
"24.1"
:type
'
(
choice
(
const
:tag
"Never"
nil
)
(
const
:tag
"When archiving a subtree to the same file"
infile
)
...
...
lisp/org/org-attach.el
View file @
372d7b21
...
...
@@ -101,6 +101,7 @@ ln create a hard link. Note that this is not supported
(
defcustom
org-attach-store-link-p
nil
"Non-nil means store a link to a file when attaching it."
:group
'org-attach
:version
"24.1"
:type
'
(
choice
(
const
:tag
"Don't store link"
nil
)
(
const
:tag
"Link to origin location"
t
)
...
...
lisp/org/org-beamer.el
View file @
372d7b21
...
...
@@ -43,6 +43,7 @@
(
defcustom
org-beamer-use-parts
nil
""
:group
'org-beamer
:version
"24.1"
:type
'boolean
)
(
defcustom
org-beamer-frame-level
1
...
...
@@ -52,6 +53,7 @@ Setting this to 2 will allow sections, 3 will allow subsections as well.
You can set this to 4 as well, if you at the same time set
`org-beamer-use-parts' to make the top levels `\part'."
:group
'org-beamer
:version
"24.1"
:type
'
(
choice
(
const
:tag
"Frames need a BEAMER_env property"
nil
)
(
integer
:tag
"Specific level makes a frame"
)))
...
...
@@ -60,12 +62,14 @@ You can set this to 4 as well, if you at the same time set
"Default options string to use for frames, should contains the [brackets].
And example for this is \"[allowframebreaks]\"."
:group
'org-beamer
:version
"24.1"
:type
'
(
string
:tag
"[options]"
))
(
defcustom
org-beamer-column-view-format
"%45ITEM %10BEAMER_env(Env) %10BEAMER_envargs(Env Args) %4BEAMER_col(Col) %8BEAMER_extra(Extra)"
"Default column view format that should be used to fill the template."
:group
'org-beamer
:version
"24.1"
:type
'
(
choice
(
const
:tag
"Do not insert Beamer column view format"
nil
)
(
string
:tag
"Beamer column view format"
)))
...
...
@@ -76,6 +80,7 @@ And example for this is \"[allowframebreaks]\"."
When a beamer template is filled, this will be the default for
BEAMER_HEADER_EXTRA, which will be inserted just before \\begin{document}."
:group
'org-beamer
:version
"24.1"
:type
'
(
choice
(
const
:tag
"Do not insert Beamer themes"
nil
)
(
string
:tag
"Beamer themes"
)))
...
...
@@ -142,6 +147,7 @@ open The opening template for the environment, with the following escapes
close The closing string of the environment."
:group
'org-beamer
:version
"24.1"
:type
'
(
repeat
(
list
(
string
:tag
"Environment"
)
...
...
@@ -402,6 +408,7 @@ the value will be inserted right after the documentclass statement."
(
defcustom
org-beamer-fragile-re
"\\\\\\(verb\\|lstinline\\)\\|^[ \t]*\\\\begin{\\(verbatim\\|lstlisting\\|minted\\)}"
"If this regexp matches in a frame, the frame is marked as fragile."
:group
'org-beamer
:version
"24.1"
:type
'regexp
)
(
defface
org-beamer-tag
'
((
t
(
:box
(
:line-width
1
:color
grey40
))))
...
...
@@ -511,6 +518,7 @@ This function will run in the final LaTeX document."
(
defcustom
org-beamer-outline-frame-title
"Outline"
"Default title of a frame containing an outline."
:group
'org-beamer
:version
"24.1"
:type
'
(
string
:tag
"Outline frame title"
)
)
...
...
@@ -519,6 +527,7 @@ This function will run in the final LaTeX document."
You might want to put e.g. [allowframebreaks=0.9] here. Remember to
include square brackets."
:group
'org-beamer
:version
"24.1"
:type
'
(
string
:tag
"Outline frame options"
)
)
...
...
lisp/org/org-bibtex.el
View file @
372d7b21
...
...
@@ -216,12 +216,14 @@
(
defcustom
org-bibtex-autogen-keys
nil
"Set to a truth value to use `bibtex-generate-autokey' to generate keys."
:group
'org-bibtex
:version
"24.1"
:type
'boolean
)
(
defcustom
org-bibtex-prefix
nil
"Optional prefix for all bibtex property names.
For example setting to 'BIB_' would allow interoperability with fireforg."
:group
'org-bibtex
:version
"24.1"
:type
'string
)
(
defcustom
org-bibtex-treat-headline-as-title
t
...
...
@@ -230,6 +232,7 @@ If an entry is missing a title property, use the headline text as
the property. If this value is t, `org-bibtex-check' will ignore
a missing title field."
:group
'org-bibtex
:version
"24.1"
:type
'boolean
)
(
defcustom
org-bibtex-export-arbitrary-fields
nil
...
...
@@ -238,6 +241,7 @@ This only has effect if `org-bibtex-prefix' is defined, so as to
ensure that other org-properties, such as CATEGORY or LOGGING are
not placed in the exported bibtex entry."
:group
'org-bibtex
:version
"24.1"
:type
'boolean
)
(
defcustom
org-bibtex-key-property
"CUSTOM_ID"
...
...
@@ -247,11 +251,13 @@ bibtex headlines from within an org file. This can be set to ID
to enable global links, but only with great caution, as global
IDs must be unique."
:group
'org-bibtex
:version
"24.1"
:type
'string
)
(
defcustom
org-bibtex-tags
nil
"List of tag(s) that should be added to new bib entries."
:group
'org-bibtex
:version
"24.1"
:type
'
(
repeat
:tag
"Tag"
(
string
)))
(
defcustom
org-bibtex-tags-are-keywords
nil
...
...
@@ -266,17 +272,20 @@ comma-separated string of keywords when exported to bibtex. Tags
defined in `org-bibtex-tags' or `org-bibtex-no-export-tags' will
not be exported."
:group
'org-bibtex
:version
"24.1"
:type
'boolean
)
(
defcustom
org-bibtex-no-export-tags
nil
"List of tag(s) that should not be converted to keywords.
This variable is relevant only if `org-bibtex-export-tags-as-keywords` is t."
:group
'org-bibtex
:version
"24.1"
:type
'
(
repeat
:tag
"Tag"
(
string
)))
(
defcustom
org-bibtex-type-property-name
"btype"
"Property in which to store bibtex entry type (e.g., article)."
:group
'org-bibtex
:version
"24.1"
:type
'string
)
...
...
lisp/org/org-capture.el
View file @
372d7b21
...
...
@@ -262,6 +262,7 @@ w3, w3m | %:type %:url
info | %:type %:file %:node
calendar | %:type %:date"
:group
'org-capture
:version
"24.1"
:type
'
(
repeat
(
choice
:value
(
""
""
entry
(
file
"~/org/notes.org"
)
""
)
...
...
@@ -336,12 +337,14 @@ calendar | %:type %:date"
The capture buffer is still current when this hook runs and it is
widened to the entire buffer."
:group
'org-capture
:version
"24.1"
:type
'hook
)
(
defcustom
org-capture-after-finalize-hook
nil
"Hook that is run right after a capture process is finalized.
Suitable for window cleanup"
:group
'org-capture
:version
"24.1"
:type
'hook
)
;;; The property list for keeping information about the capture process
...
...
lisp/org/org-clock.el
View file @
372d7b21
...
...
@@ -226,6 +226,7 @@ should get a different face (`org-mode-line-clock-overrun').
When this is a string, it is prepended to the clock string as an indication,
also using the face `org-mode-line-clock-overrun'."
:group
'org-clock
:version
"24.1"
:type
'
(
choice
(
const
:tag
"Just mark the time string"
nil
)
(
string
:tag
"Text to prepend"
)))
...
...
@@ -267,12 +268,14 @@ string as argument."
:formatter
nil
)
"Default properties for clock tables."
:group
'org-clock
:version
"24.1"
:type
'plist
)
(
defcustom
org-clock-clocktable-formatter
'org-clocktable-write-default
"Function to turn clocking data into a table.
For more information, see `org-clocktable-write-default'."
:group
'org-clocktable
:version
"24.1"
:type
'function
)
;; FIXME: translate es and nl last string "Clock summary at"
...
...
@@ -283,6 +286,7 @@ For more information, see `org-clocktable-write-default'."
(
"nl"
"Bestand"
"N"
"Tijdstip"
"Hoofding"
"Duur"
"ALLES"
"Totale duur"
"Bestandstijd"
"Clock summary at"
))
"Terms used in clocktable, translated to different languages."
:group
'org-clocktable
:version
"24.1"
:type
'alist
)
(
defcustom
org-clock-clocktable-default-properties
'
(
:maxlevel
2
:scope
file
)
...
...
@@ -310,11 +314,13 @@ play with them."
(
defcustom
org-clock-report-include-clocking-task
nil
"When non-nil, include the current clocking task time in clock reports."
:group
'org-clock
:version
"24.1"
:type
'boolean
)
(
defcustom
org-clock-resolve-expert
nil
"Non-nil means do not show the splash buffer with the clock resolver."
:group
'org-clock
:version
"24.1"
:type
'boolean
)
(
defvar
org-clock-in-prepare-hook
nil
...
...
lisp/org/org-ctags.el
View file @
372d7b21
...
...
@@ -162,6 +162,7 @@ See the ctags documentation for more information.")
(
t
"ctags-exuberant"
))
"Full path to the ctags executable file."
:group
'org-ctags
:version
"24.1"
:type
'file
)
(
defcustom
org-ctags-open-link-functions
...
...
@@ -170,6 +171,7 @@ See the ctags documentation for more information.")
org-ctags-ask-append-topic
)
"List of functions to be prepended to ORG-OPEN-LINK-FUNCTIONS when ORG-CTAGS is active."
:group
'org-ctags
:version
"24.1"
:type
'hook
:options
'
(
org-ctags-find-tag
org-ctags-ask-rebuild-tags-file-then-find-tag
...
...
lisp/org/org-docbook.el
View file @
372d7b21
...
...
@@ -150,6 +150,7 @@ avoid same set of footnote IDs being used multiple times."
(
defcustom
org-export-docbook-footnote-separator
"<superscript>, </superscript>"
"Text used to separate footnotes."
:group
'org-export-docbook
:version
"24.1"
:type
'string
)
(
defcustom
org-export-docbook-emphasis-alist
...
...
@@ -195,6 +196,7 @@ This XSLT stylesheet is used by
Object (FO) files. You can use either `fo/docbook.xsl' that
comes with DocBook, or any customization layer you may have."
:group
'org-export-docbook
:version
"24.1"
:type
'string
)
(
defcustom
org-export-docbook-xslt-proc-command
nil
...
...
lisp/org/org-entities.el
View file @
372d7b21
...
...
@@ -44,6 +44,7 @@
For example, this will replace \"\\nsup\" with \"[not a superset of]\"
in backends where the corresponding character is not available."
:group
'org-entities
:version
"24.1"
:type
'boolean
)
(
defcustom
org-entities-user
nil
...
...
@@ -68,6 +69,7 @@ utf-8 replacement Use the special characters available in utf-8.
If you define new entities here that require specific LaTeX packages to be
loaded, add these packages to `org-export-latex-packages-alist'."
:group
'org-entities
:version
"24.1"
:type
'
(
repeat
(
list
(
string
:tag
"name "
)
...
...
lisp/org/org-exp-blocks.el
View file @
372d7b21
...
...
@@ -136,6 +136,7 @@ export function should accept three arguments."
(
defcustom
org-export-blocks-postblock-hook
nil
"Run after blocks have been processed with `org-export-blocks-preprocess'."
:group
'org-export-general
:version
"24.1"
:type
'hook
)
(
defun
org-export-blocks-html-quote
(
body
&optional
open
close
)
...
...
Prev
1
2
Next
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment