From 3deb65be3d59e2ae35bd6dc9bb38b138dee926f8 Mon Sep 17 00:00:00 2001 From: Juan Manuel Macias Date: Sun, 19 Sep 2021 17:58:51 +0200 Subject: [PATCH] ox.el: add smart quotes for greek * lisp/ox.el (org-export-smart-quotes-alist): The correct quotes for Greek have been established with the help of Protesilaos Stavrou --- lisp/ox.el | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/lisp/ox.el b/lisp/ox.el index 5fe894569..a8014d401 100644 --- a/lisp/ox.el +++ b/lisp/ox.el @@ -524,7 +524,7 @@ e.g. \"H:2\"." "The default language for export and clocktable translations, as a string. This may have an association in `org-clock-clocktable-language-setup', -`org-export-smart-quotes-alist' and `org-export-dictionary'. +`org-export-smart-quotes-' and `org-export-dictionary'. This option can also be set with the LANGUAGE keyword." :group 'org-export-general :type '(string :tag "Language") @@ -5437,6 +5437,16 @@ transcoding it." (secondary-closing :utf-8 "‘" :html "‘" :latex "\\grq{}" :texinfo "@quoteleft{}") (apostrophe :utf-8 "’" :html "’")) + ("el" + (primary-opening + :utf-8 "«" :html "«" :latex "\\guillemotleft{}" + :texinfo "@guillemetleft{}") + (primary-closing + :utf-8 "»" :html "»" :latex "\\guillemotright{}" + :texinfo "@guillemetright{}") + (secondary-opening :utf-8 "“" :html "“" :latex "``" :texinfo "``") + (secondary-closing :utf-8 "”" :html "”" :latex "''" :texinfo "''") + (apostrophe :utf-8 "’" :html "’")) ("en" (primary-opening :utf-8 "“" :html "“" :latex "``" :texinfo "``") (primary-closing :utf-8 "”" :html "”" :latex "''" :texinfo "''") -- 2.32.0