MajorBriggs
MajorBriggs

Reputation: 556

Org-mode: dots exported as ellipsis

When I export to ascii in org-mode 8.2.5h then this:

...

Is exported as this:

How do I prevent that?

Upvotes: 2

Views: 526

Answers (1)

Juancho
Juancho

Reputation: 7372

The variable org-export-with-special-strings controls the translation of horizontal ellipsis and dashes. Turn off that variable (e.g. through customize-variable) to avoid translations.

To apply this setting only to a file or subtree, use the - export option:

#+OPTIONS: -:nil

The affected translations are (as of orgmode 8.2.6):

 Org     HTML     LaTeX    UTF-8 
-----+----------+--------+-------
 \-    ­      \-             
 --    –    --         –   
 ---   —    ---        —   
 ...   …   \ldots     …   

Upvotes: 5

Related Questions