list items should begin with * not -
This commit is contained in:
parent
1d3d5f8ced
commit
f2f6d73e94
@ -24,6 +24,7 @@
|
|||||||
(link . org-gemini-link)
|
(link . org-gemini-link)
|
||||||
(section . org-gemini-section)
|
(section . org-gemini-section)
|
||||||
(src-block . org-gemini-code-block)
|
(src-block . org-gemini-code-block)
|
||||||
|
(item . org-gemini-item)
|
||||||
(template . org-gemini-template)
|
(template . org-gemini-template)
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
@ -36,6 +37,9 @@
|
|||||||
(defun org-gemini-identity (input contents info)
|
(defun org-gemini-identity (input contents info)
|
||||||
"this is a test")
|
"this is a test")
|
||||||
|
|
||||||
|
(defun org-gemini-item (input contents info)
|
||||||
|
(format "* %s" contents))
|
||||||
|
|
||||||
(defun org-gemini-code-inline (input contents info)
|
(defun org-gemini-code-inline (input contents info)
|
||||||
;; there's a bug here where there's a trailing space in the ``
|
;; there's a bug here where there's a trailing space in the ``
|
||||||
(format "`%s`" (org-export-format-code-default input info)))
|
(format "`%s`" (org-export-format-code-default input info)))
|
||||||
|
Loading…
Reference in New Issue
Block a user