Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>I assume that you do not want the text to appear emphasized in the buffer, nor in the output. This is a slightly more complex answer which will achieve that result:</p> <p>There is a variable defined by Org-mode called <code>org-emphasis-alist</code> which defines the different emphasis modes, what their plain-text syntaxes are, and how they are exported to HTML. You can achieve the result you want by changing the value of this variable <em>before Org-mode has been loaded</em>. That last part is critical so note it well—Org-mode reads the value of <code>org-emphasis-alist</code> when it is loaded and uses that value to generate a regular expression for highlighting ("font-lock") purposes.</p> <p>Here are two routes to that:</p> <ol> <li><p>Add the following lines to your .emacs file above the lines that load Org-mode:</p> <pre><code>(setq org-emphasis-alist `(("*" bold "&lt;b&gt;" "&lt;/b&gt;") ;; ("/" italic "&lt;i&gt;" "&lt;/i&gt;") ("_" underline "&lt;span style=\"text-decoration:underline;\"&gt;" "&lt;/span&gt;") ("=" org-code "&lt;code&gt;" "&lt;/code&gt;" verbatim) ("~" org-verbatim "&lt;code&gt;" "&lt;/code&gt;" verbatim) ("+" ,(if (featurep 'xemacs) 'org-table '(:strike-through t)) "&lt;del&gt;" "&lt;/del&gt;"))) </code></pre> <p>(Notice the commented out line.)</p></li> <li><p>Make the change through Emacs' customization facility:</p> <ol> <li><code>M-x customize RET</code></li> <li>In the search box enter <code>Org Emphasis</code> and click <code>Search</code>.</li> <li>Click the down arrow next to <code>Org Emphasis Alist</code> to reveal its value.</li> <li>Find and click the second <code>DEL</code> button—corresponding to the <code>italic</code> list item.</li> <li>Click the <code>Save for future sessions</code> button at the top of the buffer.</li> </ol></li> </ol>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload