list items should begin with * not -

This commit is contained in:
Justin Abrahms 2020-11-07 21:53:56 -08:00
parent 1d3d5f8ced
commit f2f6d73e94

View File

@ -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)))