From 97a45353d19be98bcf0d94da0d902a025408fa3a Mon Sep 17 00:00:00 2001 From: DPDmancul Date: Wed, 11 Aug 2021 18:21:55 +0200 Subject: [PATCH] ox: Italian smart quotes * ox.el (org-export-smart-quotes-alist): Added support for italian smart quotes. --- lisp/ox.el | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lisp/ox.el b/lisp/ox.el index eb12b68d7..5fe894569 100644 --- a/lisp/ox.el +++ b/lisp/ox.el @@ -5476,6 +5476,12 @@ transcoding it."       (secondary-closing        :utf-8 "‘" :html "‘" :latex "\\grq{}" :texinfo "@quoteleft{}")       (apostrophe :utf-8 "’" :html "’")) +    ("it" +     (primary-opening :utf-8 "“" :html "“" :latex "``" :texinfo "``") +     (primary-closing :utf-8 "”" :html "”" :latex "''" :texinfo "''") +     (secondary-opening :utf-8 "‘" :html "‘" :latex "`" :texinfo "`") +     (secondary-closing :utf-8 "’" :html "’" :latex "'" :texinfo "'") +     (apostrophe :utf-8 "’" :html "’"))      ("no"       ;; https://nn.wikipedia.org/wiki/Sitatteikn       (primary-opening -- 2.32.0