From 202a085ce9e0e3e7c0e67bcdde91e706050fd976 Mon Sep 17 00:00:00 2001 From: Juan Manuel Macias Date: Fri, 4 Aug 2023 09:04:03 +0200 Subject: [PATCH] lisp/ox.el: fix inner smart quotes in French. * (org-export-smart-quotes-alist): the correct French second level quotation marks are added. --- lisp/ox.el | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/lisp/ox.el b/lisp/ox.el index 3a6dd8ded..473bd927c 100644 --- a/lisp/ox.el +++ b/lisp/ox.el @@ -5840,11 +5840,8 @@ transcoding it." (primary-closing :utf-8 " »" :html " »" :latex "\\fg{}" :texinfo "@tie{}@guillemetright{}") - (secondary-opening - :utf-8 "« " :html "« " :latex "\\og " - :texinfo "@guillemetleft{}@tie{}") - (secondary-closing :utf-8 " »" :html " »" :latex "\\fg{}" - :texinfo "@tie{}@guillemetright{}") + (secondary-opening :utf-8 "“" :html "“" :latex "``" :texinfo "``") + (secondary-closing :utf-8 "”" :html "”" :latex "''" :texinfo "''") (apostrophe :utf-8 "’" :html "’")) ("is" (primary-opening -- 2.41.0