summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert P. Goldman <rpgoldman@real-time.com>2011-10-21 11:13:29 -0500
committerBastien Guerry <bzg@altern.org>2011-10-24 18:40:28 +0200
commit821b854a0edbf9497746cb696b77b12e8d2b715c (patch)
tree502c4b393591114fb725087688f9e5114ad3bfff
parent7c1c2bfe1084557769036ba825611ec9936d88b1 (diff)
downloadorg-mode-821b854a0edbf9497746cb696b77b12e8d2b715c.tar.gz
Fix header prefixes for trac wiki.
trac wiki has hard limit on number of headers. Need space before macro characters in trac wiki. Add a couple of TODO comments.
-rw-r--r--contrib/lisp/org-export-generic.el6
1 files changed, 4 insertions, 2 deletions
diff --git a/contrib/lisp/org-export-generic.el b/contrib/lisp/org-export-generic.el
index 5a5af14..12bbcdb 100644
--- a/contrib/lisp/org-export-generic.el
+++ b/contrib/lisp/org-export-generic.el
@@ -87,7 +87,9 @@
;; *** allow different open/closing prefixes
;; * properties
;; * drawers
-;; * oh my
+;; * Escape camel-case for wiki exporters.
+;; * Adjust to depth limits on headers --- need to roll-over from headers
+;; to lists, as per other exporters
;; * optmization (many plist extracts should be in let vars)
;; * define defcustom spec for the specifier list
;; * fonts: at least monospace is not handled at all here.
@@ -406,7 +408,7 @@ in this way, it will be wrapped."
:body-section-prefix "\n"
:body-section-header-prefix (" == " " === " " ==== "
- " ===== " " ====== " " ======= ")
+ " ===== " )
:body-section-header-suffix (" ==\n\n" " ===\n\n" " ====\n\n"
" =====\n\n" " ======\n\n" " =======\n\n")