mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-09-07 19:25:13 +02:00
10 lines
285 B
JavaScript
10 lines
285 B
JavaScript
var { isNodeChildrenList } = require('./utils');
|
|
|
|
module.exports = function cleanRaw(node, item, list) {
|
|
// raw in stylesheet or block children
|
|
if (isNodeChildrenList(this.stylesheet, list) ||
|
|
isNodeChildrenList(this.block, list)) {
|
|
list.remove(item);
|
|
}
|
|
};
|