tycho garen <ga...@tychoish.com> writes: > On Tue, Dec 06, 2011 at 06:25:09PM +0000, Herbert Sitz wrote: >> In my exports to pdf standard double-quote and single-quote (apostrophe) >> characters both get translated to corresponding pairs of opening and closing >> quotes. But in export to html both double- and single-quotes seem to be same >> in resulting html as they were in the org text, non-paired, non-directional. > > The directional quotes are processed by LaTeX and org have very little > to do with this.
If one has --8<---------------cut here---------------start------------->8--- (setq org-export-with-TeX-macros t) --8<---------------cut here---------------end--------------->8--- then I believe something like --8<---------------cut here---------------start------------->8--- \rdquo This is a quoted text \ldquo --8<---------------cut here---------------end--------------->8--- will do the trick. FWIW, a dump of quotations section in org-entities.el. ,---- | "** Quotations" | ("quot" "\\textquotedbl{}" nil """ "\"" "\"" "\"") | ("acute" "\\textasciiacute{}" nil "´" "'" "´" "´") | ("ldquo" "\\textquotedblleft{}" nil "“" "\"" "\"" "“") | ("rdquo" "\\textquotedblright{}" nil "”" "\"" "\"" "”") | ("bdquo" "\\quotedblbase{}" nil "„" "\"" "\"" "„") | ("lsquo" "\\textquoteleft{}" nil "‘" "`" "`" "‘") | ("rsquo" "\\textquoteright{}" nil "’" "'" "'" "’") | ("sbquo" "\\quotesinglbase{}" nil "‚" "," "," "‚") | ("laquo" "\\guillemotleft{}" nil "«" "<<" "«" "«") | ("raquo" "\\guillemotright{}" nil "»" ">>" "»" "»") | ("lsaquo" "\\guilsinglleft{}" nil "‹" "<" "<" "‹") | ("rsaquo" "\\guilsinglright{}" nil "›" ">" ">" "›") `---- --