/
TON618OFF
/
FinalPWHTML
Обзор
Документация
Войти
/
TON618OFF
/
FinalPWHTML
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
node_modules/postcss-page-break/index.js
35 строк
1 KB
TON618OFF
не ну это ваще
23 июн 2024, 00:30
23 июн 2024, 00:30
e27ae20
Код
Авторство
О чём код?
module.exports = function(options) { return { postcssPlugin: 'postcss-page-break', Declaration(decl) { if (decl.prop.startsWith('break-') && /^break-(inside|before|after)/.test(decl.prop)) { // do not process column|region related properties if (decl.value.search(/column|region/) >= 0) { return; } let newValue; switch (decl.value) { case 'page': newValue = 'always'; break; case 'avoid-page': newValue = 'avoid'; break; default: newValue = decl.value; } const newProperty = 'page-' + decl.prop; if (decl.parent.every((sibling) => sibling.prop !== newProperty)) { decl.cloneBefore({ prop: newProperty, value: newValue, }); } } }, }; }; module.exports.postcss = true;