emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/org 18f6ef8 33/85: ox.el: add smart quotes for greek


From: ELPA Syncer
Subject: [elpa] externals/org 18f6ef8 33/85: ox.el: add smart quotes for greek
Date: Mon, 27 Sep 2021 15:57:44 -0400 (EDT)

branch: externals/org
commit 18f6ef8c3fec80d829d0c1feff881e129ba7e8cc
Author: Juan Manuel Macias <maciaschain@posteo.net>
Commit: Bastien <bzg@gnu.org>

    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, who
    has contributed a style guide for the European institutions:
    http://publications.europa.eu/code/el/el-4100107el.htmq On the correct
    character for Greek second-level opening quotes, according to Yannis
    Haralambous (`From Unicode to Typography, a Case Study: the Greek
    Script' (1999, p. 20), a symbol equivalent to the Unicode character
    U+201F is historically attested. But it seems that the current trend
    in Greece is to apply the character U+201C, more commonly used in
    other languages. Haralambous himself, in a recent consultation,
    states: `[...] U+201C is a good choice for representing that grapheme
    since it is used in most countries of the world...'
---
 lisp/ox.el | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/lisp/ox.el b/lisp/ox.el
index 18b13a3..89a3ff5 100644
--- a/lisp/ox.el
+++ b/lisp/ox.el
@@ -5437,6 +5437,16 @@ transcoding it."
      (secondary-closing
       :utf-8 "‘" :html "&lsquo;" :latex "\\grq{}" :texinfo "@quoteleft{}")
      (apostrophe :utf-8 "’" :html "&rsquo;"))
+    ("el"
+     (primary-opening
+      :utf-8 "«" :html "&laquo;" :latex "\\guillemotleft{}"
+      :texinfo "@guillemetleft{}")
+     (primary-closing
+      :utf-8 "»" :html "&raquo;" :latex "\\guillemotright{}"
+      :texinfo "@guillemetright{}")
+     (secondary-opening :utf-8 "“" :html "&ldquo;" :latex "``" :texinfo "``")
+     (secondary-closing :utf-8 "”" :html "&rdquo;" :latex "''" :texinfo "''")
+     (apostrophe :utf-8 "’" :html "&rsquo;"))
     ("en"
      (primary-opening :utf-8 "“" :html "&ldquo;" :latex "``" :texinfo "``")
      (primary-closing :utf-8 "”" :html "&rdquo;" :latex "''" :texinfo "''")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]