org.el (org-emph-re): Tiny formatting fix
* org.el (org-emph-re): Tiny formatting fix.
This commit is contained in:
parent
c5bc43133b
commit
8fb39ad25b
19
lisp/org.el
19
lisp/org.el
|
@ -3745,15 +3745,13 @@ Use customize to modify this, or restart Emacs after changing it."
|
|||
(integer :tag "number of newlines allowed")
|
||||
(option (boolean :tag "Please ignore this button"))))
|
||||
|
||||
(defcustom org-emphasis-alist
|
||||
(defconst org-emphasis-alist
|
||||
`(("*" bold "<b>" "</b>")
|
||||
("/" italic "<i>" "</i>")
|
||||
("_" underline "<span style=\"text-decoration:underline;\">" "</span>")
|
||||
("=" org-code "<code>" "</code>" verbatim)
|
||||
("~" org-verbatim "<code>" "</code>" verbatim)
|
||||
("+" ,(if (featurep 'xemacs) 'org-table '(:strike-through t))
|
||||
"<del>" "</del>")
|
||||
)
|
||||
("+" ,(if (featurep 'xemacs) 'org-table '(:strike-through t)) "<del>" "</del>"))
|
||||
"Special syntax for emphasized text.
|
||||
Text starting and ending with a special character will be emphasized, for
|
||||
example *bold*, _underlined_ and /italic/. This variable sets the marker
|
||||
|
@ -3761,18 +3759,7 @@ characters, the face to be used by font-lock for highlighting in Org-mode
|
|||
Emacs buffers, and the HTML tags to be used for this.
|
||||
For LaTeX export, see the variable `org-export-latex-emphasis-alist'.
|
||||
For DocBook export, see the variable `org-export-docbook-emphasis-alist'.
|
||||
Use customize to modify this, or restart Emacs after changing it."
|
||||
:group 'org-appearance
|
||||
:set 'org-set-emph-re
|
||||
:type '(repeat
|
||||
(list
|
||||
(string :tag "Marker character")
|
||||
(choice
|
||||
(face :tag "Font-lock-face")
|
||||
(plist :tag "Face property list"))
|
||||
(string :tag "HTML start tag")
|
||||
(string :tag "HTML end tag")
|
||||
(option (const verbatim)))))
|
||||
Use customize to modify this, or restart Emacs after changing it.")
|
||||
|
||||
(defvar org-protecting-blocks
|
||||
'("src" "example" "latex" "ascii" "html" "docbook" "ditaa" "dot" "r" "R")
|
||||
|
|
Loading…
Reference in New Issue