diff options
| author | 2014-01-27 23:18:39 +0100 | |
|---|---|---|
| committer | 2014-01-27 23:18:39 +0100 | |
| commit | b66e7206a0dd4b28d27479b4a970d4cdc293caf3 (patch) | |
| tree | c2c5d40f1aecdbd9aacafe00fd2e1e0ad35a4ec7 | |
| parent | 1fe62d55ecb8e983361067059d88c7b221a0f541 (diff) | |
| download | edocs-b66e7206a0dd4b28d27479b4a970d4cdc293caf3.tar.gz edocs-b66e7206a0dd4b28d27479b4a970d4cdc293caf3.zip | |
Wrap comments with a container div
| -rw-r--r-- | edocs.el | 13 |
1 files changed, 7 insertions, 6 deletions
@@ -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'. |
