fix byte-compile errors
This commit is contained in:
parent
d624d900bb
commit
1164449c20
29
ox-gemini.el
29
ox-gemini.el
@ -27,6 +27,8 @@
|
|||||||
;; There's a trailing space after inline code samples
|
;; There's a trailing space after inline code samples
|
||||||
;; If you don't have a title, it leaves a blank # in the gmi
|
;; If you don't have a title, it leaves a blank # in the gmi
|
||||||
;; If you link a file to an absolute path, the links break
|
;; If you link a file to an absolute path, the links break
|
||||||
|
;; bare links don't work (e.g. directly linking https://google.com
|
||||||
|
;;
|
||||||
|
|
||||||
;;; Code:
|
;;; Code:
|
||||||
|
|
||||||
@ -47,13 +49,13 @@
|
|||||||
(item . org-gemini-item)
|
(item . org-gemini-item)
|
||||||
(template . org-gemini-template)))
|
(template . org-gemini-template)))
|
||||||
|
|
||||||
(defun org-gemini-paragraph (paragraph contents info)
|
(defun org-gemini-paragraph (paragraph _contents _info)
|
||||||
paragraph)
|
paragraph)
|
||||||
|
|
||||||
(defun org-gemini-item (input contents info)
|
(defun org-gemini-item (_input contents _info)
|
||||||
(format "* %s" contents))
|
(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)))
|
||||||
|
|
||||||
@ -62,7 +64,7 @@
|
|||||||
(format "```\n%s```"
|
(format "```\n%s```"
|
||||||
(org-export-format-code-default example-block info))))
|
(org-export-format-code-default example-block info))))
|
||||||
|
|
||||||
(defun org-gemini--describe-links (links width info)
|
(defun org-gemini--describe-links (links _width info)
|
||||||
"Describe links is the footer-portion of the link data. It's
|
"Describe links is the footer-portion of the link data. It's
|
||||||
output just before each section."
|
output just before each section."
|
||||||
(mapconcat
|
(mapconcat
|
||||||
@ -82,7 +84,7 @@ output just before each section."
|
|||||||
links ""))
|
links ""))
|
||||||
|
|
||||||
|
|
||||||
(defun org-gemini-link (link desc info)
|
(defun org-gemini-link (_link desc _info)
|
||||||
"Simple link generation.
|
"Simple link generation.
|
||||||
|
|
||||||
Note: the footer with the actual links are handled in
|
Note: the footer with the actual links are handled in
|
||||||
@ -112,12 +114,12 @@ contextual information."
|
|||||||
(plist-get info :ascii-inner-margin))))))
|
(plist-get info :ascii-inner-margin))))))
|
||||||
|
|
||||||
(defun org-gemini--build-title
|
(defun org-gemini--build-title
|
||||||
(element info text-width &optional underline notags toc)
|
(element info _text-width &optional _underline _notags toc)
|
||||||
(let ((number (org-element-property :level element))
|
(let ((number (org-element-property :level element))
|
||||||
(text
|
(text
|
||||||
(org-trim
|
(org-trim
|
||||||
(org-export-data
|
(org-export-data
|
||||||
(if (and toc headlinep)
|
(if toc
|
||||||
(org-export-get-alt-title element info)
|
(org-export-get-alt-title element info)
|
||||||
(org-element-property :title element))
|
(org-element-property :title element))
|
||||||
info))))
|
info))))
|
||||||
@ -181,13 +183,12 @@ holding contextual information."
|
|||||||
"Return complete document string after GEMINI conversion.
|
"Return complete document string after GEMINI conversion.
|
||||||
CONTENTS is the transcoded contents string. INFO is a plist
|
CONTENTS is the transcoded contents string. INFO is a plist
|
||||||
holding export options."
|
holding export options."
|
||||||
(let ((global-margin (plist-get info :ascii-global-margin)))
|
(concat
|
||||||
(concat
|
;; Build title block.
|
||||||
;; Build title block.
|
(format "# %s\n" (org-export-data
|
||||||
(format "# %s\n" (org-export-data
|
(when (plist-get info :with-title) (plist-get info :title)) info))
|
||||||
(when (plist-get info :with-title) (plist-get info :title)) info))
|
;; Document's body.
|
||||||
;; Document's body.
|
contents))
|
||||||
contents)))
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user