From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Robert P. Goldman" Subject: [PATCH 5/5] Fix header prefixes for trac wiki. Date: Fri, 21 Oct 2011 11:13:29 -0500 Message-ID: <1319213609-40770-6-git-send-email-rpgoldman@real-time.com> References: <1319213609-40770-1-git-send-email-rpgoldman@real-time.com> Return-path: Received: from eggs.gnu.org ([140.186.70.92]:33088) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RHHuQ-00020D-HW for emacs-orgmode@gnu.org; Fri, 21 Oct 2011 12:25:28 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RHHuP-0007AI-9Y for emacs-orgmode@gnu.org; Fri, 21 Oct 2011 12:25:26 -0400 Received: from enchanter.real-time.com ([63.170.91.11]:1027) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RHHuP-00078d-5D for emacs-orgmode@gnu.org; Fri, 21 Oct 2011 12:25:25 -0400 In-Reply-To: <1319213609-40770-1-git-send-email-rpgoldman@real-time.com> List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Cc: "Robert P. Goldman" trac wiki has hard limit on number of headers. Need space before macro characters in trac wiki. Add a couple of TODO comments. --- contrib/lisp/org-export-generic.el | 6 ++++-- 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") -- 1.7.3.5