From f2f6d73e94a30b2389f925f4f9d0383b8988d50b Mon Sep 17 00:00:00 2001 From: Justin Abrahms Date: Sat, 7 Nov 2020 21:53:56 -0800 Subject: [PATCH] list items should begin with * not - --- ox-gemini.el | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ox-gemini.el b/ox-gemini.el index bc06700..5f5eb74 100644 --- a/ox-gemini.el +++ b/ox-gemini.el @@ -24,6 +24,7 @@ (link . org-gemini-link) (section . org-gemini-section) (src-block . org-gemini-code-block) + (item . org-gemini-item) (template . org-gemini-template) ) ) @@ -36,6 +37,9 @@ (defun org-gemini-identity (input contents info) "this is a test") +(defun org-gemini-item (input contents info) + (format "* %s" contents)) + (defun org-gemini-code-inline (input contents info) ;; there's a bug here where there's a trailing space in the `` (format "`%s`" (org-export-format-code-default input info)))