Readme.md 1.0 KiB

12345678910111213141516171819202122232425262728293031323334
  1. # document-outerhtml
  2. Like [Element.outerHTML][], but for the whole [Document][].
  3. This means it returns a string containing the `<html>.....</html>` with all the content between, plus the `<!DOCTYPE ....>` declaration (if present), and any comments and stray elements or text nodes.
  4. ## Install
  5. npm install "git+https://code.treora.com/gerben/document-outerhtml#latest"
  6. or
  7. npm install document-outerhtml@latest
  8. ..or equivalent
  9. ## Usage
  10. import documentOuterHTML from 'document-outerhtml'
  11. const html = documentOuterHTML(document)
  12. ## Licence
  13. [CC0](https://creativecommons.org/publicdomain/zero/1.0/); do whatever you want with this code.
  14. ## See also
  15. - [XMLSerializer.serializeToString][]; does nearly the same thing, except it creates XML.
  16. [Element.outerHTML]: https://developer.mozilla.org/en-US/docs/Web/API/Element/outerHTML
  17. [Document]: https://developer.mozilla.org/en-US/docs/Web/API/Document
  18. [XMLSerializer.serializeToString]: https://developer.mozilla.org/en-US/docs/Web/API/XMLSerializer/serializeToString