/** Check if content looks like a full page (not a component/partial) */ function isFullPage(content) { const stripped = content.replace(//g, ''); return /]|]/i.test(stripped); } export { isFullPage };