Take foo /bar/ baz
as example, when exported to HTML, it becomes foo <i>bar</i> baz
, now I want to export it with the original style foo /bar/ baz
, how to achieve this ? I have tried foo \/bar\/ baz
, but the output becomes foo \/bar\/ baz
.
I know this is an easy question, I have googled a lot, but only find this one: Escape pipe-character in org-mode, the answer says slash escaping works fine, but for me, it seems not fine.
edit:
After searching org mode mailing list, I find a discussion and solution here: http://thread.gmane.org/gmane.emacs.orgmode/50743
There are two ways to do this:
- set option
#+OPTIONS: *:nil
to turn off all emphasis symbols - modify variable
org-emphasis-alist
, remove relevant content
For me, the first solution is acceptable, and also it is simple.