From b66e7206a0dd4b28d27479b4a970d4cdc293caf3 Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Mon, 27 Jan 2014 23:18:39 +0100 Subject: Wrap comments with a container div --- edocs.el | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/edocs.el b/edocs.el index 74a21ed..ad7b0a9 100644 --- a/edocs.el +++ b/edocs.el @@ -242,12 +242,13 @@ parts of the module." KNOWN-SYMBOLS is used for referencing symbols found in other parts of the module." - (edocs--export-format-text - exporter - (replace-regexp-in-string - ";" "*" (replace-regexp-in-string - "^;; " "" (replace-regexp-in-string - ";;; Commentary:\n+" "" cmt))) known-symbols)) + (edocs--with-tag "div" '(("class" . "container")) + (edocs--export-format-text + exporter + (replace-regexp-in-string + ";" "*" (replace-regexp-in-string + "^;; " "" (replace-regexp-in-string + ";;; Commentary:\n+" "" cmt))) known-symbols))) (defun edocs--format-doc (exporter doc known-symbols) "Make EXPORTER perform formatting operations on DOC or on DOC's `cdr'. -- cgit v1.2.3-54-g00ecf