UNPKG

@marko/prettyprint

Version:

Prettyprint Marko template files in the syntax of your choice

11 lines (8 loc) 275 B
"use strict"; module.exports = function printDocumentType(node, printContext, writer) { var doctype = node.documentType.value; if (printContext.preserveWhitespace !== true) { doctype = doctype.trim(); } writer.write("<!" + doctype + ">" + printContext.eol); };