cl markless plump
1.0.0A compiler for Markless to Plump DOM/HTML.
This system allows you to serialise a Markless AST to HTML or the Plump DOM.
(cl-markless:output "| a" :format 'cl-markless-plump:plump)
;; => <article><blockquote><p>a</p></blockquote></article>
You can also output into an existing DOM by setting the target to that DOM node.
(let ((dom (plump:parse "<b>Test</b>")))
(cl-markless:output "| a" :target dom :format 'cl-markless-plump:plump)
(plump:serialize dom))
;; => <b>Test</b><article><blockquote><p>a</p></blockquote></article>
System Information
Definition Index
-
CL-MARKLESS-PLUMP
- ORG.SHIRAKUMO.MARKLESS.PLUMP
No documentation provided.