You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
837 B
33 lines
837 B
"use strict";
|
|
|
|
const postcssStringify = require("postcss/lib/stringify");
|
|
const Document = require("./html/document");
|
|
|
|
module.exports = stringify;
|
|
|
|
function stringify(node, builder) {
|
|
if (!(node instanceof Document)) {
|
|
const syntax = node.source.syntax || node.root().source.syntax;
|
|
if (syntax && syntax.stringify) {
|
|
syntax.stringify(node, builder);
|
|
} else {
|
|
postcssStringify(node, builder);
|
|
}
|
|
return;
|
|
}
|
|
|
|
if (node.nodes.length) {
|
|
node.nodes.forEach((root) => {
|
|
builder(root.raws.codeBefore, root, "codeBefore");
|
|
if (root.source.syntax) {
|
|
root.source.syntax.stringify(root, builder);
|
|
} else {
|
|
postcssStringify(root, builder);
|
|
}
|
|
builder(root.raws.codeAfter || "", root, "codeAfter");
|
|
});
|
|
} else {
|
|
// If it do not have root, it will output the input.
|
|
builder(node.source.input.css);
|
|
}
|
|
}
|
|
|