From c5c5f8da2fec1d6497f94a1835ea5427d925fd11 Mon Sep 17 00:00:00 2001 From: Zheng Qu Date: Sat, 17 Dec 2022 23:38:13 +0100 Subject: [PATCH] Fix missing quote support in ox-awesomecv --- ox-awesomecv.el | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ox-awesomecv.el b/ox-awesomecv.el index f257d84..8d7c601 100644 --- a/ox-awesomecv.el +++ b/ox-awesomecv.el @@ -189,6 +189,11 @@ holding export options." (and (stringp template) (format-spec template spec))) + ;; quote + (let ((quote (plist-get info :quote))) + (when quote + (format "\\quote{%s}\n" quote))) + ;; Document start. "\\begin{document}\n\n"