Added trac-wiki and tikiwiki export settings.
This commit is contained in:
parent
22ad7e845a
commit
3133b92fec
|
@ -428,6 +428,85 @@ in this way, it will be wrapped."
|
|||
:body-list-suffix "</list>\n"
|
||||
:body-list-format "<t>%s</t>\n"
|
||||
|
||||
)
|
||||
("trac-wiki"
|
||||
:file-suffix ".txt"
|
||||
:key-binding ?T
|
||||
|
||||
;; lifted from wikipedia exporter
|
||||
:header-prefix ""
|
||||
:header-suffix ""
|
||||
|
||||
:title-format "= %s =\n"
|
||||
|
||||
:date-export nil
|
||||
|
||||
:toc-export nil
|
||||
|
||||
:body-header-section-numbers nil
|
||||
:body-section-prefix "\n"
|
||||
|
||||
:body-section-header-prefix ("== " "=== " "==== "
|
||||
"===== " "====== " "======= ")
|
||||
:body-section-header-suffix (" ==\n\n" " ===\n\n" " ====\n\n"
|
||||
" =====\n\n" " ======\n\n" " =======\n\n")
|
||||
|
||||
:body-line-export-preformated t ;; yes/no/maybe???
|
||||
:body-line-format "%s\n"
|
||||
:body-line-wrap 75
|
||||
|
||||
:body-line-fixed-format " %s\n"
|
||||
|
||||
:body-list-format " * %s\n"
|
||||
:body-number-list-format " # %s\n"
|
||||
;; :body-list-prefix "LISTSTART"
|
||||
;; :body-list-suffix "LISTEND"
|
||||
|
||||
;; this is ignored! [2010/02/02:rpg]
|
||||
:body-bullet-list-prefix ("* " "** " "*** " "**** " "***** ")
|
||||
)
|
||||
("tikiwiki"
|
||||
:file-suffix ".txt"
|
||||
:key-binding ?U
|
||||
|
||||
;; lifted from wikipedia exporter
|
||||
:header-prefix ""
|
||||
:header-suffix ""
|
||||
|
||||
:title-format "-= %s =-\n"
|
||||
|
||||
:date-export nil
|
||||
|
||||
:toc-export nil
|
||||
|
||||
:body-header-section-numbers nil
|
||||
:body-section-prefix "\n"
|
||||
|
||||
:body-section-header-prefix ("! " "!! " "!!! " "!!!! "
|
||||
"!!!!! " "!!!!!! " "!!!!!!! ")
|
||||
:body-section-header-suffix (" \n" " \n" " \n"
|
||||
" \n" " \n" " \n")
|
||||
|
||||
|
||||
:body-line-export-preformated t ;; yes/no/maybe???
|
||||
:body-line-format "%s "
|
||||
:body-line-wrap nil
|
||||
|
||||
:body-line-fixed-format " %s\n"
|
||||
|
||||
:body-list-format "* %s\n"
|
||||
:body-number-list-format "# %s\n"
|
||||
;; :body-list-prefix "LISTSTART"
|
||||
;; :body-list-suffix "LISTEND"
|
||||
:blockquote-start "\n^\n"
|
||||
:blockquote-end "^\n\n"
|
||||
:body-newline-paragraph "\n"
|
||||
:bold-format "__%s__"
|
||||
:italic-format "''%s''"
|
||||
:underline-format "===%s==="
|
||||
:strikethrough-format "--%s--"
|
||||
:code-format "-+%s+-"
|
||||
:verbatim-format "~pp~%s~/pp~"
|
||||
)
|
||||
)
|
||||
"A assoc list of property lists to specify export definitions"
|
||||
|
|
Loading…
Reference in New Issue