How can I emphasize or verbatim quote a comma in org mode?

感情迁移 提交于 2019-12-30 05:16:05

问题


I tried to make the comma *,* bold, but no success. I tried with verbatim =,=, but no success as well.


回答1:


You can achieve what you want by adding the following to your .emacs:

(setcar (nthcdr 2 org-emphasis-regexp-components) " \t\r\n\"'")
(org-set-emph-re 'org-emphasis-regexp-components org-emphasis-regexp-components)

Explanation

The manual says that org-emphasis-regexp-components can be used to

fine tune what characters are allowed before and after the markup characters [...].

It is a list containing five entries. The third entry lists characters that are not allowed to immediately follow or precede markup characters. By default, , is one of them so in order to successfully apply formatting to this character we have to remove it from the list of characters disallowed before or after the markup characters. This is what the call to setcar does. The purpose of the second line is to rebuild the regular expression for emphasis based on the modified version of org-emphasis-regexp-components.


Sources

  • This answer to a related question
  • ~"~ doesn't register as verbatim on the org-mode mailing list
  • C-h v org-emphasis-regexp-components RET



回答2:


There's a similar problem and I've figured out a solution.

@itsjeyd's solution is right but not 100% correct. We need an extra (org-element--set-regexps).

The full code snippets:

(setcar (nthcdr 2 org-emphasis-regexp-components) " \t\n\r")
(custom-set-variables `(org-emphasis-alist ',org-emphasis-alist))
(org-element--set-regexps)


来源:https://stackoverflow.com/questions/24169333/how-can-i-emphasize-or-verbatim-quote-a-comma-in-org-mode

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!