diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2020-08-31 19:12:12 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2020-08-31 19:13:30 +0200 |
commit | e63705ab9ba9081bcb4ed97e82019aab5a033d0d (patch) | |
tree | 913d70faa6bfbda1442daa30de6015557b1d7e5f /lisp/dom.el | |
parent | 04578c10636fbbd1c1a924404a955eb37ffefd8f (diff) | |
download | emacs-e63705ab9ba9081bcb4ed97e82019aab5a033d0d.tar.gz emacs-e63705ab9ba9081bcb4ed97e82019aab5a033d0d.tar.bz2 emacs-e63705ab9ba9081bcb4ed97e82019aab5a033d0d.zip |
Add a new function dom-print
* doc/lispref/text.texi (Document Object Model): Document it.
* lisp/dom.el (dom-print): New function.
Diffstat (limited to 'lisp/dom.el')
-rw-r--r-- | lisp/dom.el | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/lisp/dom.el b/lisp/dom.el index 7ff9e07b729..bf4a56ab9f5 100644 --- a/lisp/dom.el +++ b/lisp/dom.el @@ -269,6 +269,50 @@ white-space." (insert ")") (insert "\n" (make-string (1+ column) ? )))))))) +(defun dom-print (dom &optional pretty xml) + "Print DOM at point as HTML/XML. +If PRETTY, indent the HTML/XML logically. +If XML, generate XML instead of HTML." + (let ((column (current-column))) + (insert (format "<%s" (dom-tag dom))) + (let ((attr (dom-attributes dom))) + (dolist (elem attr) + ;; In HTML, these are boolean attributes that should not have + ;; an = value. + (if (and (memq (car elem) + '(async autofocus autoplay checked + contenteditable controls default + defer disabled formNoValidate frameborder + hidden ismap itemscope loop + multiple muted nomodule novalidate open + readonly required reversed + scoped selected typemustmatch)) + (cdr elem) + (not xml)) + (insert (format " %s" (car elem))) + (insert (format " %s=%S" (car elem) (cdr elem)))))) + (let* ((children (dom-children dom)) + (non-text nil)) + (if (null children) + (insert " />") + (insert ">") + (dolist (child children) + (if (stringp child) + (insert child) + (setq non-text t) + (when pretty + (insert "\n" (make-string (+ column 2) ? ))) + (dom-print child pretty xml))) + ;; If we inserted non-text child nodes, or a text node that + ;; ends with a newline, then we indent the end tag. + (when (and pretty + (or (bolp) + non-text)) + (unless (bolp) + (insert "\n")) + (insert (make-string column ? ))) + (insert (format "</%s>" (dom-tag dom))))))) + (provide 'dom) ;;; dom.el ends here |