UNPKG

hermit

Version:

Prints html in the terminal using colors and simple layout to reflect the document structure.

8 lines (6 loc) 158 B
var render = module.exports = function render(nodes) { function processNode(node) { return node.text; } return nodes.map(processNode).join(''); };