mirror of
https://git.savannah.gnu.org/git/emacs/org-mode.git
synced 2024-12-28 10:56:57 +00:00
ox-html.el: New CSS .underline and #org-div-home-and-up.
* ox-html.el (org-html-style-default): New CSS .underline and #org-div-home-and-up. (org-html-text-markup-alist): Don't hardcode the style, use the new class .underline. (org-html-home/up-format): Don't hardcode the style, use #org-div-home-and-up. (org-html-center-block): Use the .center class.
This commit is contained in:
parent
abc94ec96a
commit
baa299952f
@ -38,7 +38,6 @@
|
|||||||
(require 'format-spec)
|
(require 'format-spec)
|
||||||
(eval-when-compile (require 'cl) (require 'table))
|
(eval-when-compile (require 'cl) (require 'table))
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
;;; Function Declarations
|
;;; Function Declarations
|
||||||
|
|
||||||
@ -47,7 +46,6 @@
|
|||||||
(declare-function org-pop-to-buffer-same-window
|
(declare-function org-pop-to-buffer-same-window
|
||||||
"org-compat" (&optional buffer-or-name norecord label))
|
"org-compat" (&optional buffer-or-name norecord label))
|
||||||
|
|
||||||
|
|
||||||
;;; Define Back-End
|
;;; Define Back-End
|
||||||
|
|
||||||
(org-export-define-backend html
|
(org-export-define-backend html
|
||||||
@ -129,7 +127,6 @@
|
|||||||
;; Leave room for "ox-infojs.el" extension.
|
;; Leave room for "ox-infojs.el" extension.
|
||||||
(:infojs-opt "INFOJS_OPT" nil nil)))
|
(:infojs-opt "INFOJS_OPT" nil nil)))
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
;;; Internal Variables
|
;;; Internal Variables
|
||||||
|
|
||||||
@ -205,6 +202,7 @@ for the JavaScript code in this tag.
|
|||||||
.right { margin-left: auto; margin-right: 0px; text-align: right; }
|
.right { margin-left: auto; margin-right: 0px; text-align: right; }
|
||||||
.left { margin-left: 0px; margin-right: auto; text-align: left; }
|
.left { margin-left: 0px; margin-right: auto; text-align: left; }
|
||||||
.center { margin-left: auto; margin-right: auto; text-align: center; }
|
.center { margin-left: auto; margin-right: auto; text-align: center; }
|
||||||
|
.underline { text-decoration: underline; }
|
||||||
#content { margin: 3em; }
|
#content { margin: 3em; }
|
||||||
#postamble p, a { font-size: 90%; margin: .2em; }
|
#postamble p, a { font-size: 90%; margin: .2em; }
|
||||||
p.verse { margin-left: 3%; }
|
p.verse { margin-left: 3%; }
|
||||||
@ -248,14 +246,16 @@ for the JavaScript code in this tag.
|
|||||||
td.left { text-align: left; }
|
td.left { text-align: left; }
|
||||||
td.center { text-align: center; }
|
td.center { text-align: center; }
|
||||||
dt { font-weight: bold; }
|
dt { font-weight: bold; }
|
||||||
div.figure { padding:1em; }
|
.figure { padding: 1em; }
|
||||||
div.figure p { text-align:center; }
|
.figure p { text-align: center; }
|
||||||
div.inlinetask {
|
.inlinetask {
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
border: 2px solid gray;
|
border: 2px solid gray;
|
||||||
margin: 10px;
|
margin: 10px;
|
||||||
background: #ffffcc;
|
background: #ffffcc;
|
||||||
}
|
}
|
||||||
|
#org-div-home-and-up
|
||||||
|
{ text-align: right; font-size: 70%; white-space: nowrap; }
|
||||||
textarea { overflow-x:auto; }
|
textarea { overflow-x:auto; }
|
||||||
.linenr { font-size:smaller }
|
.linenr { font-size:smaller }
|
||||||
.code-highlighted { background-color:#ffff00; }
|
.code-highlighted { background-color:#ffff00; }
|
||||||
@ -271,7 +271,6 @@ You can use `org-html-head' and `org-html-head-extra' to add to
|
|||||||
this style. If you don't want to include this default style,
|
this style. If you don't want to include this default style,
|
||||||
customize `org-html-head-include-default-style'.")
|
customize `org-html-head-include-default-style'.")
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
;;; User Configuration Variables
|
;;; User Configuration Variables
|
||||||
|
|
||||||
@ -280,7 +279,6 @@ customize `org-html-head-include-default-style'.")
|
|||||||
:tag "Org Export HTML"
|
:tag "Org Export HTML"
|
||||||
:group 'org-export)
|
:group 'org-export)
|
||||||
|
|
||||||
|
|
||||||
;;;; Handle infojs
|
;;;; Handle infojs
|
||||||
|
|
||||||
(defvar org-html-infojs-opts-table
|
(defvar org-html-infojs-opts-table
|
||||||
@ -486,7 +484,6 @@ export back-end currently used."
|
|||||||
;; Return the modified property list.
|
;; Return the modified property list.
|
||||||
exp-plist)))
|
exp-plist)))
|
||||||
|
|
||||||
|
|
||||||
;;;; Bold, etc.
|
;;;; Bold, etc.
|
||||||
|
|
||||||
(defcustom org-html-text-markup-alist
|
(defcustom org-html-text-markup-alist
|
||||||
@ -494,7 +491,7 @@ export back-end currently used."
|
|||||||
(code . "<code>%s</code>")
|
(code . "<code>%s</code>")
|
||||||
(italic . "<i>%s</i>")
|
(italic . "<i>%s</i>")
|
||||||
(strike-through . "<del>%s</del>")
|
(strike-through . "<del>%s</del>")
|
||||||
(underline . "<span style=\"text-decoration:underline;\">%s</span>")
|
(underline . "<span class=\"underline\">%s</span>")
|
||||||
(verbatim . "<code>%s</code>"))
|
(verbatim . "<code>%s</code>"))
|
||||||
"Alist of HTML expressions to convert text markup.
|
"Alist of HTML expressions to convert text markup.
|
||||||
|
|
||||||
@ -536,7 +533,6 @@ in order to mimic default behaviour:
|
|||||||
:group 'org-export-html
|
:group 'org-export-html
|
||||||
:type 'function)
|
:type 'function)
|
||||||
|
|
||||||
|
|
||||||
;;;; Footnotes
|
;;;; Footnotes
|
||||||
|
|
||||||
(defcustom org-html-footnotes-section "<div id=\"footnotes\">
|
(defcustom org-html-footnotes-section "<div id=\"footnotes\">
|
||||||
@ -563,7 +559,6 @@ by the footnotes themselves."
|
|||||||
:group 'org-export-html
|
:group 'org-export-html
|
||||||
:type 'string)
|
:type 'string)
|
||||||
|
|
||||||
|
|
||||||
;;;; Headline
|
;;;; Headline
|
||||||
|
|
||||||
(defcustom org-html-toplevel-hlevel 2
|
(defcustom org-html-toplevel-hlevel 2
|
||||||
@ -591,7 +586,6 @@ The function result will be used in the section format string."
|
|||||||
:group 'org-export-html
|
:group 'org-export-html
|
||||||
:type 'function)
|
:type 'function)
|
||||||
|
|
||||||
|
|
||||||
;;;; HTML-specific
|
;;;; HTML-specific
|
||||||
|
|
||||||
(defcustom org-html-allow-name-attribute-in-anchors t
|
(defcustom org-html-allow-name-attribute-in-anchors t
|
||||||
@ -603,7 +597,6 @@ attributes, when appropriate."
|
|||||||
:package-version '(Org . "8.0")
|
:package-version '(Org . "8.0")
|
||||||
:type 'boolean)
|
:type 'boolean)
|
||||||
|
|
||||||
|
|
||||||
;;;; Inlinetasks
|
;;;; Inlinetasks
|
||||||
|
|
||||||
(defcustom org-html-format-inlinetask-function nil
|
(defcustom org-html-format-inlinetask-function nil
|
||||||
@ -621,7 +614,6 @@ The function should return the string to be exported."
|
|||||||
:group 'org-export-html
|
:group 'org-export-html
|
||||||
:type 'function)
|
:type 'function)
|
||||||
|
|
||||||
|
|
||||||
;;;; LaTeX
|
;;;; LaTeX
|
||||||
|
|
||||||
(defcustom org-html-with-latex org-export-with-latex
|
(defcustom org-html-with-latex org-export-with-latex
|
||||||
@ -652,7 +644,6 @@ t Synonym for `mathjax'."
|
|||||||
(const :tag "Use MathJax to display math" mathjax)
|
(const :tag "Use MathJax to display math" mathjax)
|
||||||
(const :tag "Leave math verbatim" verbatim)))
|
(const :tag "Leave math verbatim" verbatim)))
|
||||||
|
|
||||||
|
|
||||||
;;;; Links :: Generic
|
;;;; Links :: Generic
|
||||||
|
|
||||||
(defcustom org-html-link-org-files-as-html t
|
(defcustom org-html-link-org-files-as-html t
|
||||||
@ -667,7 +658,6 @@ When nil, the links still point to the plain `.org' file."
|
|||||||
:group 'org-export-html
|
:group 'org-export-html
|
||||||
:type 'boolean)
|
:type 'boolean)
|
||||||
|
|
||||||
|
|
||||||
;;;; Links :: Inline images
|
;;;; Links :: Inline images
|
||||||
|
|
||||||
(defcustom org-html-inline-images 'maybe
|
(defcustom org-html-inline-images 'maybe
|
||||||
@ -702,7 +692,6 @@ default we use here encompasses both."
|
|||||||
:type '(alist :key-type (string :tag "Type")
|
:type '(alist :key-type (string :tag "Type")
|
||||||
:value-type (regexp :tag "Path")))
|
:value-type (regexp :tag "Path")))
|
||||||
|
|
||||||
|
|
||||||
;;;; Plain Text
|
;;;; Plain Text
|
||||||
|
|
||||||
(defcustom org-html-protect-char-alist
|
(defcustom org-html-protect-char-alist
|
||||||
@ -714,7 +703,6 @@ default we use here encompasses both."
|
|||||||
:type '(repeat (cons (string :tag "Character")
|
:type '(repeat (cons (string :tag "Character")
|
||||||
(string :tag "HTML equivalent"))))
|
(string :tag "HTML equivalent"))))
|
||||||
|
|
||||||
|
|
||||||
;;;; Src Block
|
;;;; Src Block
|
||||||
|
|
||||||
(defcustom org-html-htmlize-output-type 'inline-css
|
(defcustom org-html-htmlize-output-type 'inline-css
|
||||||
@ -817,7 +805,6 @@ Otherwise, place it near the end."
|
|||||||
:group 'org-export-html
|
:group 'org-export-html
|
||||||
:type 'boolean)
|
:type 'boolean)
|
||||||
|
|
||||||
|
|
||||||
;;;; Tags
|
;;;; Tags
|
||||||
|
|
||||||
(defcustom org-html-tag-class-prefix ""
|
(defcustom org-html-tag-class-prefix ""
|
||||||
@ -829,7 +816,6 @@ CSS classes, then this prefix can be very useful."
|
|||||||
:group 'org-export-html
|
:group 'org-export-html
|
||||||
:type 'string)
|
:type 'string)
|
||||||
|
|
||||||
|
|
||||||
;;;; Template :: Generic
|
;;;; Template :: Generic
|
||||||
|
|
||||||
(defcustom org-html-extension "html"
|
(defcustom org-html-extension "html"
|
||||||
@ -872,7 +858,6 @@ postamble DIV."
|
|||||||
(string :tag " Div for the content:")
|
(string :tag " Div for the content:")
|
||||||
(string :tag "Div for the postamble:")))
|
(string :tag "Div for the postamble:")))
|
||||||
|
|
||||||
|
|
||||||
;;;; Template :: Mathjax
|
;;;; Template :: Mathjax
|
||||||
|
|
||||||
(defcustom org-html-mathjax-options
|
(defcustom org-html-mathjax-options
|
||||||
@ -954,7 +939,6 @@ You can also customize this for each buffer, using something like
|
|||||||
:group 'org-export-html
|
:group 'org-export-html
|
||||||
:type 'string)
|
:type 'string)
|
||||||
|
|
||||||
|
|
||||||
;;;; Template :: Postamble
|
;;;; Template :: Postamble
|
||||||
|
|
||||||
(defcustom org-html-postamble 'auto
|
(defcustom org-html-postamble 'auto
|
||||||
@ -1018,7 +1002,6 @@ like that: \"%%\"."
|
|||||||
:group 'org-export-html
|
:group 'org-export-html
|
||||||
:type '(string :tag "Creator string"))
|
:type '(string :tag "Creator string"))
|
||||||
|
|
||||||
|
|
||||||
;;;; Template :: Preamble
|
;;;; Template :: Preamble
|
||||||
|
|
||||||
(defcustom org-html-preamble t
|
(defcustom org-html-preamble t
|
||||||
@ -1075,7 +1058,7 @@ example."
|
|||||||
:type '(string :tag "File or URL"))
|
:type '(string :tag "File or URL"))
|
||||||
|
|
||||||
(defcustom org-html-home/up-format
|
(defcustom org-html-home/up-format
|
||||||
"<div id=\"org-div-home-and-up\" style=\"text-align:right;font-size:70%%;white-space:nowrap;\">
|
"<div id=\"org-div-home-and-up\">
|
||||||
<a accesskey=\"h\" href=\"%s\"> UP </a>
|
<a accesskey=\"h\" href=\"%s\"> UP </a>
|
||||||
|
|
|
|
||||||
<a accesskey=\"H\" href=\"%s\"> HOME </a>
|
<a accesskey=\"H\" href=\"%s\"> HOME </a>
|
||||||
@ -1088,7 +1071,6 @@ ignored."
|
|||||||
:group 'org-export-html
|
:group 'org-export-html
|
||||||
:type 'string)
|
:type 'string)
|
||||||
|
|
||||||
|
|
||||||
;;;; Template :: Scripts
|
;;;; Template :: Scripts
|
||||||
|
|
||||||
(define-obsolete-variable-alias
|
(define-obsolete-variable-alias
|
||||||
@ -1102,7 +1084,6 @@ not be modified."
|
|||||||
:package-version '(Org . "8.0")
|
:package-version '(Org . "8.0")
|
||||||
:type 'boolean)
|
:type 'boolean)
|
||||||
|
|
||||||
|
|
||||||
;;;; Template :: Styles
|
;;;; Template :: Styles
|
||||||
|
|
||||||
(define-obsolete-variable-alias
|
(define-obsolete-variable-alias
|
||||||
@ -1157,7 +1138,6 @@ or for publication projects using the :html-head property."
|
|||||||
;;;###autoload
|
;;;###autoload
|
||||||
(put 'org-html-head 'safe-local-variable 'stringp)
|
(put 'org-html-head 'safe-local-variable 'stringp)
|
||||||
|
|
||||||
|
|
||||||
(defcustom org-html-head-extra ""
|
(defcustom org-html-head-extra ""
|
||||||
"More head information to add in the HTML output.
|
"More head information to add in the HTML output.
|
||||||
|
|
||||||
@ -1221,7 +1201,6 @@ ELEMENT is either a src block or an example block."
|
|||||||
(or (plist-get attr :height) (org-count-lines code))
|
(or (plist-get attr :height) (org-count-lines code))
|
||||||
code)))
|
code)))
|
||||||
|
|
||||||
|
|
||||||
;;;; Bibliography
|
;;;; Bibliography
|
||||||
|
|
||||||
(defun org-html-bibliography ()
|
(defun org-html-bibliography ()
|
||||||
@ -1375,7 +1354,6 @@ INFO is a plist used as a communication channel."
|
|||||||
"\n%s\n"
|
"\n%s\n"
|
||||||
(mapconcat 'org-html-format-footnote-definition fn-alist "\n"))))))
|
(mapconcat 'org-html-format-footnote-definition fn-alist "\n"))))))
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
;;; Template
|
;;; Template
|
||||||
|
|
||||||
@ -1761,7 +1739,6 @@ a plist used as a communication channel."
|
|||||||
(new 0))))
|
(new 0))))
|
||||||
(org-html-do-format-code code lang refs retain-labels num-start)))
|
(org-html-do-format-code code lang refs retain-labels num-start)))
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
;;; Tables of Contents
|
;;; Tables of Contents
|
||||||
|
|
||||||
@ -1910,7 +1887,6 @@ of tables as a string, or nil if it is empty."
|
|||||||
lol-entries "\n"))
|
lol-entries "\n"))
|
||||||
"\n</ul>\n</div>\n</div>"))))
|
"\n</ul>\n</div>\n</div>"))))
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
;;; Transcode Functions
|
;;; Transcode Functions
|
||||||
|
|
||||||
@ -1923,15 +1899,13 @@ contextual information."
|
|||||||
(format (or (cdr (assq 'bold org-html-text-markup-alist)) "%s")
|
(format (or (cdr (assq 'bold org-html-text-markup-alist)) "%s")
|
||||||
contents))
|
contents))
|
||||||
|
|
||||||
|
|
||||||
;;;; Center Block
|
;;;; Center Block
|
||||||
|
|
||||||
(defun org-html-center-block (center-block contents info)
|
(defun org-html-center-block (center-block contents info)
|
||||||
"Transcode a CENTER-BLOCK element from Org to HTML.
|
"Transcode a CENTER-BLOCK element from Org to HTML.
|
||||||
CONTENTS holds the contents of the block. INFO is a plist
|
CONTENTS holds the contents of the block. INFO is a plist
|
||||||
holding contextual information."
|
holding contextual information."
|
||||||
(format "<div style=\"text-align: center\">\n%s</div>" contents))
|
(format "<div class=\"center\">\n%s</div>" contents))
|
||||||
|
|
||||||
|
|
||||||
;;;; Clock
|
;;;; Clock
|
||||||
|
|
||||||
@ -1951,7 +1925,6 @@ channel."
|
|||||||
(let ((time (org-element-property :duration clock)))
|
(let ((time (org-element-property :duration clock)))
|
||||||
(and time (format " <span class=\"timestamp\">(%s)</span>" time)))))
|
(and time (format " <span class=\"timestamp\">(%s)</span>" time)))))
|
||||||
|
|
||||||
|
|
||||||
;;;; Code
|
;;;; Code
|
||||||
|
|
||||||
(defun org-html-code (code contents info)
|
(defun org-html-code (code contents info)
|
||||||
@ -1961,7 +1934,6 @@ information."
|
|||||||
(format (or (cdr (assq 'code org-html-text-markup-alist)) "%s")
|
(format (or (cdr (assq 'code org-html-text-markup-alist)) "%s")
|
||||||
(org-html-plain-text (org-element-property :value code) info)))
|
(org-html-plain-text (org-element-property :value code) info)))
|
||||||
|
|
||||||
|
|
||||||
;;;; Drawer
|
;;;; Drawer
|
||||||
|
|
||||||
(defun org-html-drawer (drawer contents info)
|
(defun org-html-drawer (drawer contents info)
|
||||||
@ -1976,7 +1948,6 @@ holding contextual information."
|
|||||||
;; display contents of the drawer.
|
;; display contents of the drawer.
|
||||||
contents))
|
contents))
|
||||||
|
|
||||||
|
|
||||||
;;;; Dynamic Block
|
;;;; Dynamic Block
|
||||||
|
|
||||||
(defun org-html-dynamic-block (dynamic-block contents info)
|
(defun org-html-dynamic-block (dynamic-block contents info)
|
||||||
@ -1985,7 +1956,6 @@ CONTENTS holds the contents of the block. INFO is a plist
|
|||||||
holding contextual information. See `org-export-data'."
|
holding contextual information. See `org-export-data'."
|
||||||
contents)
|
contents)
|
||||||
|
|
||||||
|
|
||||||
;;;; Entity
|
;;;; Entity
|
||||||
|
|
||||||
(defun org-html-entity (entity contents info)
|
(defun org-html-entity (entity contents info)
|
||||||
@ -1994,7 +1964,6 @@ CONTENTS are the definition itself. INFO is a plist holding
|
|||||||
contextual information."
|
contextual information."
|
||||||
(org-element-property :html entity))
|
(org-element-property :html entity))
|
||||||
|
|
||||||
|
|
||||||
;;;; Example Block
|
;;;; Example Block
|
||||||
|
|
||||||
(defun org-html-example-block (example-block contents info)
|
(defun org-html-example-block (example-block contents info)
|
||||||
@ -2006,7 +1975,6 @@ information."
|
|||||||
(format "<pre class=\"example\">\n%s</pre>"
|
(format "<pre class=\"example\">\n%s</pre>"
|
||||||
(org-html-format-code example-block info))))
|
(org-html-format-code example-block info))))
|
||||||
|
|
||||||
|
|
||||||
;;;; Export Snippet
|
;;;; Export Snippet
|
||||||
|
|
||||||
(defun org-html-export-snippet (export-snippet contents info)
|
(defun org-html-export-snippet (export-snippet contents info)
|
||||||
@ -2016,7 +1984,6 @@ information."
|
|||||||
(when (eq (org-export-snippet-backend export-snippet) 'html)
|
(when (eq (org-export-snippet-backend export-snippet) 'html)
|
||||||
(org-element-property :value export-snippet)))
|
(org-element-property :value export-snippet)))
|
||||||
|
|
||||||
|
|
||||||
;;;; Export Block
|
;;;; Export Block
|
||||||
|
|
||||||
(defun org-html-export-block (export-block contents info)
|
(defun org-html-export-block (export-block contents info)
|
||||||
@ -2025,7 +1992,6 @@ CONTENTS is nil. INFO is a plist holding contextual information."
|
|||||||
(when (string= (org-element-property :type export-block) "HTML")
|
(when (string= (org-element-property :type export-block) "HTML")
|
||||||
(org-remove-indentation (org-element-property :value export-block))))
|
(org-remove-indentation (org-element-property :value export-block))))
|
||||||
|
|
||||||
|
|
||||||
;;;; Fixed Width
|
;;;; Fixed Width
|
||||||
|
|
||||||
(defun org-html-fixed-width (fixed-width contents info)
|
(defun org-html-fixed-width (fixed-width contents info)
|
||||||
@ -2036,7 +2002,6 @@ CONTENTS is nil. INFO is a plist holding contextual information."
|
|||||||
(org-remove-indentation
|
(org-remove-indentation
|
||||||
(org-element-property :value fixed-width)))))
|
(org-element-property :value fixed-width)))))
|
||||||
|
|
||||||
|
|
||||||
;;;; Footnote Reference
|
;;;; Footnote Reference
|
||||||
|
|
||||||
(defun org-html-footnote-reference (footnote-reference contents info)
|
(defun org-html-footnote-reference (footnote-reference contents info)
|
||||||
@ -2062,7 +2027,6 @@ CONTENTS is nil. INFO is a plist holding contextual information."
|
|||||||
(org-export-get-footnote-number footnote-reference info)
|
(org-export-get-footnote-number footnote-reference info)
|
||||||
"IGNORED" 1)))))
|
"IGNORED" 1)))))
|
||||||
|
|
||||||
|
|
||||||
;;;; Headline
|
;;;; Headline
|
||||||
|
|
||||||
(defun org-html-format-headline--wrap
|
(defun org-html-format-headline--wrap
|
||||||
@ -2183,7 +2147,6 @@ holding contextual information."
|
|||||||
contents)
|
contents)
|
||||||
contents)))))))
|
contents)))))))
|
||||||
|
|
||||||
|
|
||||||
;;;; Horizontal Rule
|
;;;; Horizontal Rule
|
||||||
|
|
||||||
(defun org-html-horizontal-rule (horizontal-rule contents info)
|
(defun org-html-horizontal-rule (horizontal-rule contents info)
|
||||||
@ -2191,7 +2154,6 @@ holding contextual information."
|
|||||||
CONTENTS is nil. INFO is a plist holding contextual information."
|
CONTENTS is nil. INFO is a plist holding contextual information."
|
||||||
"<hr/>")
|
"<hr/>")
|
||||||
|
|
||||||
|
|
||||||
;;;; Inline Src Block
|
;;;; Inline Src Block
|
||||||
|
|
||||||
(defun org-html-inline-src-block (inline-src-block contents info)
|
(defun org-html-inline-src-block (inline-src-block contents info)
|
||||||
@ -2202,7 +2164,6 @@ contextual information."
|
|||||||
(code (org-element-property :value inline-src-block)))
|
(code (org-element-property :value inline-src-block)))
|
||||||
(error "Cannot export inline src block")))
|
(error "Cannot export inline src block")))
|
||||||
|
|
||||||
|
|
||||||
;;;; Inlinetask
|
;;;; Inlinetask
|
||||||
|
|
||||||
(defun org-html-format-section (text class &optional id)
|
(defun org-html-format-section (text class &optional id)
|
||||||
@ -2231,7 +2192,6 @@ holding contextual information."
|
|||||||
(org-html-format-headline--wrap inlinetask info)
|
(org-html-format-headline--wrap inlinetask info)
|
||||||
contents))))
|
contents))))
|
||||||
|
|
||||||
|
|
||||||
;;;; Italic
|
;;;; Italic
|
||||||
|
|
||||||
(defun org-html-italic (italic contents info)
|
(defun org-html-italic (italic contents info)
|
||||||
@ -2240,7 +2200,6 @@ CONTENTS is the text with italic markup. INFO is a plist holding
|
|||||||
contextual information."
|
contextual information."
|
||||||
(format (or (cdr (assq 'italic org-html-text-markup-alist)) "%s") contents))
|
(format (or (cdr (assq 'italic org-html-text-markup-alist)) "%s") contents))
|
||||||
|
|
||||||
|
|
||||||
;;;; Item
|
;;;; Item
|
||||||
|
|
||||||
(defun org-html-checkbox (checkbox)
|
(defun org-html-checkbox (checkbox)
|
||||||
@ -2296,7 +2255,6 @@ contextual information."
|
|||||||
(org-html-format-list-item
|
(org-html-format-list-item
|
||||||
contents type checkbox (or tag counter))))
|
contents type checkbox (or tag counter))))
|
||||||
|
|
||||||
|
|
||||||
;;;; Keyword
|
;;;; Keyword
|
||||||
|
|
||||||
(defun org-html-keyword (keyword contents info)
|
(defun org-html-keyword (keyword contents info)
|
||||||
@ -2319,7 +2277,6 @@ CONTENTS is nil. INFO is a plist holding contextual information."
|
|||||||
((string= "listings" value) (org-html-list-of-listings info))
|
((string= "listings" value) (org-html-list-of-listings info))
|
||||||
((string= "tables" value) (org-html-list-of-tables info))))))))
|
((string= "tables" value) (org-html-list-of-tables info))))))))
|
||||||
|
|
||||||
|
|
||||||
;;;; Latex Environment
|
;;;; Latex Environment
|
||||||
|
|
||||||
(defun org-html-format-latex (latex-frag processing-type)
|
(defun org-html-format-latex (latex-frag processing-type)
|
||||||
@ -2360,7 +2317,6 @@ CONTENTS is nil. INFO is a plist holding contextual information."
|
|||||||
(match-string 1 formula-link) caption label attr t))))
|
(match-string 1 formula-link) caption label attr t))))
|
||||||
(t latex-frag))))
|
(t latex-frag))))
|
||||||
|
|
||||||
|
|
||||||
;;;; Latex Fragment
|
;;;; Latex Fragment
|
||||||
|
|
||||||
(defun org-html-latex-fragment (latex-fragment contents info)
|
(defun org-html-latex-fragment (latex-fragment contents info)
|
||||||
@ -2380,7 +2336,6 @@ CONTENTS is nil. INFO is a plist holding contextual information."
|
|||||||
(match-string 1 formula-link)))))
|
(match-string 1 formula-link)))))
|
||||||
(t latex-frag))))
|
(t latex-frag))))
|
||||||
|
|
||||||
|
|
||||||
;;;; Line Break
|
;;;; Line Break
|
||||||
|
|
||||||
(defun org-html-line-break (line-break contents info)
|
(defun org-html-line-break (line-break contents info)
|
||||||
@ -2388,7 +2343,6 @@ CONTENTS is nil. INFO is a plist holding contextual information."
|
|||||||
CONTENTS is nil. INFO is a plist holding contextual information."
|
CONTENTS is nil. INFO is a plist holding contextual information."
|
||||||
"<br/>\n")
|
"<br/>\n")
|
||||||
|
|
||||||
|
|
||||||
;;;; Link
|
;;;; Link
|
||||||
|
|
||||||
(defun org-html-link--inline-image (link desc info)
|
(defun org-html-link--inline-image (link desc info)
|
||||||
@ -2638,7 +2592,6 @@ INFO is a plist holding contextual information. See
|
|||||||
;; No path, only description. Try to do something useful.
|
;; No path, only description. Try to do something useful.
|
||||||
(t (format "<i>%s</i>" desc)))))
|
(t (format "<i>%s</i>" desc)))))
|
||||||
|
|
||||||
|
|
||||||
;;;; Paragraph
|
;;;; Paragraph
|
||||||
|
|
||||||
(defun org-html-paragraph (paragraph contents info)
|
(defun org-html-paragraph (paragraph contents info)
|
||||||
@ -2663,7 +2616,6 @@ the plist used as a communication channel."
|
|||||||
contents)
|
contents)
|
||||||
(t (format "<p%s>\n%s</p>%s" extra contents after)))))
|
(t (format "<p%s>\n%s</p>%s" extra contents after)))))
|
||||||
|
|
||||||
|
|
||||||
;;;; Plain List
|
;;;; Plain List
|
||||||
|
|
||||||
;; FIXME Maybe arg1 is not needed because <li value="20"> already sets
|
;; FIXME Maybe arg1 is not needed because <li value="20"> already sets
|
||||||
@ -2770,7 +2722,6 @@ channel."
|
|||||||
(org-element-property :raw-value scheduled)))))))
|
(org-element-property :raw-value scheduled)))))))
|
||||||
" "))))
|
" "))))
|
||||||
|
|
||||||
|
|
||||||
;;;; Property Drawer
|
;;;; Property Drawer
|
||||||
|
|
||||||
(defun org-html-property-drawer (property-drawer contents info)
|
(defun org-html-property-drawer (property-drawer contents info)
|
||||||
@ -2781,7 +2732,6 @@ information."
|
|||||||
;; lines nonetheless.
|
;; lines nonetheless.
|
||||||
"")
|
"")
|
||||||
|
|
||||||
|
|
||||||
;;;; Quote Block
|
;;;; Quote Block
|
||||||
|
|
||||||
(defun org-html-quote-block (quote-block contents info)
|
(defun org-html-quote-block (quote-block contents info)
|
||||||
@ -2790,7 +2740,6 @@ CONTENTS holds the contents of the block. INFO is a plist
|
|||||||
holding contextual information."
|
holding contextual information."
|
||||||
(format "<blockquote>\n%s</blockquote>" contents))
|
(format "<blockquote>\n%s</blockquote>" contents))
|
||||||
|
|
||||||
|
|
||||||
;;;; Quote Section
|
;;;; Quote Section
|
||||||
|
|
||||||
(defun org-html-quote-section (quote-section contents info)
|
(defun org-html-quote-section (quote-section contents info)
|
||||||
@ -2800,7 +2749,6 @@ CONTENTS is nil. INFO is a plist holding contextual information."
|
|||||||
(org-element-property :value quote-section))))
|
(org-element-property :value quote-section))))
|
||||||
(when value (format "<pre>\n%s</pre>" value))))
|
(when value (format "<pre>\n%s</pre>" value))))
|
||||||
|
|
||||||
|
|
||||||
;;;; Section
|
;;;; Section
|
||||||
|
|
||||||
(defun org-html-section (section contents info)
|
(defun org-html-section (section contents info)
|
||||||
@ -2833,7 +2781,6 @@ contextual information."
|
|||||||
(org-element-property :value radio-target))))
|
(org-element-property :value radio-target))))
|
||||||
(org-html--anchor id text)))
|
(org-html--anchor id text)))
|
||||||
|
|
||||||
|
|
||||||
;;;; Special Block
|
;;;; Special Block
|
||||||
|
|
||||||
(defun org-html-special-block (special-block contents info)
|
(defun org-html-special-block (special-block contents info)
|
||||||
@ -2844,7 +2791,6 @@ holding contextual information."
|
|||||||
(downcase (org-element-property :type special-block))
|
(downcase (org-element-property :type special-block))
|
||||||
contents))
|
contents))
|
||||||
|
|
||||||
|
|
||||||
;;;; Src Block
|
;;;; Src Block
|
||||||
|
|
||||||
(defun org-html-src-block (src-block contents info)
|
(defun org-html-src-block (src-block contents info)
|
||||||
@ -2868,7 +2814,6 @@ contextual information."
|
|||||||
(org-export-data caption info)))
|
(org-export-data caption info)))
|
||||||
(format "\n<pre class=\"src src-%s\"%s>%s</pre>" lang label code))))))
|
(format "\n<pre class=\"src src-%s\"%s>%s</pre>" lang label code))))))
|
||||||
|
|
||||||
|
|
||||||
;;;; Statistics Cookie
|
;;;; Statistics Cookie
|
||||||
|
|
||||||
(defun org-html-statistics-cookie (statistics-cookie contents info)
|
(defun org-html-statistics-cookie (statistics-cookie contents info)
|
||||||
@ -2877,7 +2822,6 @@ CONTENTS is nil. INFO is a plist holding contextual information."
|
|||||||
(let ((cookie-value (org-element-property :value statistics-cookie)))
|
(let ((cookie-value (org-element-property :value statistics-cookie)))
|
||||||
(format "<code>%s</code>" cookie-value)))
|
(format "<code>%s</code>" cookie-value)))
|
||||||
|
|
||||||
|
|
||||||
;;;; Strike-Through
|
;;;; Strike-Through
|
||||||
|
|
||||||
(defun org-html-strike-through (strike-through contents info)
|
(defun org-html-strike-through (strike-through contents info)
|
||||||
@ -2887,7 +2831,6 @@ holding contextual information."
|
|||||||
(format (or (cdr (assq 'strike-through org-html-text-markup-alist)) "%s")
|
(format (or (cdr (assq 'strike-through org-html-text-markup-alist)) "%s")
|
||||||
contents))
|
contents))
|
||||||
|
|
||||||
|
|
||||||
;;;; Subscript
|
;;;; Subscript
|
||||||
|
|
||||||
(defun org-html-subscript (subscript contents info)
|
(defun org-html-subscript (subscript contents info)
|
||||||
@ -2896,7 +2839,6 @@ CONTENTS is the contents of the object. INFO is a plist holding
|
|||||||
contextual information."
|
contextual information."
|
||||||
(format "<sub>%s</sub>" contents))
|
(format "<sub>%s</sub>" contents))
|
||||||
|
|
||||||
|
|
||||||
;;;; Superscript
|
;;;; Superscript
|
||||||
|
|
||||||
(defun org-html-superscript (superscript contents info)
|
(defun org-html-superscript (superscript contents info)
|
||||||
@ -2905,7 +2847,6 @@ CONTENTS is the contents of the object. INFO is a plist holding
|
|||||||
contextual information."
|
contextual information."
|
||||||
(format "<sup>%s</sup>" contents))
|
(format "<sup>%s</sup>" contents))
|
||||||
|
|
||||||
|
|
||||||
;;;; Tabel Cell
|
;;;; Tabel Cell
|
||||||
|
|
||||||
(defun org-html-table-cell (table-cell contents info)
|
(defun org-html-table-cell (table-cell contents info)
|
||||||
@ -2934,7 +2875,6 @@ channel."
|
|||||||
(t (concat "\n" (format (car org-html-table-data-tags) cell-attrs)
|
(t (concat "\n" (format (car org-html-table-data-tags) cell-attrs)
|
||||||
contents (cdr org-html-table-data-tags))))))
|
contents (cdr org-html-table-data-tags))))))
|
||||||
|
|
||||||
|
|
||||||
;;;; Table Row
|
;;;; Table Row
|
||||||
|
|
||||||
(defun org-html-table-row (table-row contents info)
|
(defun org-html-table-row (table-row contents info)
|
||||||
@ -2969,7 +2909,6 @@ communication channel."
|
|||||||
(when (org-export-table-row-ends-rowgroup-p table-row info)
|
(when (org-export-table-row-ends-rowgroup-p table-row info)
|
||||||
(cdr rowgroup-tags))))))
|
(cdr rowgroup-tags))))))
|
||||||
|
|
||||||
|
|
||||||
;;;; Table
|
;;;; Table
|
||||||
|
|
||||||
(defun org-html-table-first-row-data-cells (table info)
|
(defun org-html-table-first-row-data-cells (table info)
|
||||||
@ -3057,7 +2996,6 @@ contextual information."
|
|||||||
(funcall table-column-specs table info)
|
(funcall table-column-specs table info)
|
||||||
contents)))))
|
contents)))))
|
||||||
|
|
||||||
|
|
||||||
;;;; Target
|
;;;; Target
|
||||||
|
|
||||||
(defun org-html-target (target contents info)
|
(defun org-html-target (target contents info)
|
||||||
@ -3068,7 +3006,6 @@ information."
|
|||||||
(org-element-property :value target))))
|
(org-element-property :value target))))
|
||||||
(org-html--anchor id)))
|
(org-html--anchor id)))
|
||||||
|
|
||||||
|
|
||||||
;;;; Timestamp
|
;;;; Timestamp
|
||||||
|
|
||||||
(defun org-html-timestamp (timestamp contents info)
|
(defun org-html-timestamp (timestamp contents info)
|
||||||
@ -3080,7 +3017,6 @@ information."
|
|||||||
(format "<span class=\"timestamp-wrapper\"><span class=\"timestamp\">%s</span></span>"
|
(format "<span class=\"timestamp-wrapper\"><span class=\"timestamp\">%s</span></span>"
|
||||||
(replace-regexp-in-string "--" "–" value))))
|
(replace-regexp-in-string "--" "–" value))))
|
||||||
|
|
||||||
|
|
||||||
;;;; Underline
|
;;;; Underline
|
||||||
|
|
||||||
(defun org-html-underline (underline contents info)
|
(defun org-html-underline (underline contents info)
|
||||||
@ -3090,7 +3026,6 @@ holding contextual information."
|
|||||||
(format (or (cdr (assq 'underline org-html-text-markup-alist)) "%s")
|
(format (or (cdr (assq 'underline org-html-text-markup-alist)) "%s")
|
||||||
contents))
|
contents))
|
||||||
|
|
||||||
|
|
||||||
;;;; Verbatim
|
;;;; Verbatim
|
||||||
|
|
||||||
(defun org-html-verbatim (verbatim contents info)
|
(defun org-html-verbatim (verbatim contents info)
|
||||||
@ -3100,7 +3035,6 @@ information."
|
|||||||
(format (or (cdr (assq 'verbatim org-html-text-markup-alist)) "%s")
|
(format (or (cdr (assq 'verbatim org-html-text-markup-alist)) "%s")
|
||||||
(org-html-plain-text (org-element-property :value verbatim) info)))
|
(org-html-plain-text (org-element-property :value verbatim) info)))
|
||||||
|
|
||||||
|
|
||||||
;;;; Verse Block
|
;;;; Verse Block
|
||||||
|
|
||||||
(defun org-html-verse-block (verse-block contents info)
|
(defun org-html-verse-block (verse-block contents info)
|
||||||
@ -3122,7 +3056,6 @@ contextual information."
|
|||||||
(setq contents (replace-match ws nil t contents))))
|
(setq contents (replace-match ws nil t contents))))
|
||||||
(format "<p class=\"verse\">\n%s</p>" contents))
|
(format "<p class=\"verse\">\n%s</p>" contents))
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
;;; Filter Functions
|
;;; Filter Functions
|
||||||
|
|
||||||
@ -3136,7 +3069,6 @@ Prettifying happens if `org-html-pretty-output' is t."
|
|||||||
(indent-region (point-min) (point-max))
|
(indent-region (point-min) (point-max))
|
||||||
(buffer-substring-no-properties (point-min) (point-max)))))
|
(buffer-substring-no-properties (point-min) (point-max)))))
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
;;; End-user functions
|
;;; End-user functions
|
||||||
|
|
||||||
@ -3245,7 +3177,6 @@ publishing directory.
|
|||||||
Return output file name."
|
Return output file name."
|
||||||
(org-publish-org-to 'html filename ".html" plist pub-dir))
|
(org-publish-org-to 'html filename ".html" plist pub-dir))
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
;;; FIXME
|
;;; FIXME
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user