(function(){
const CODE = `
Living Layer · FORUM D&PArchitecture as a Healthy Impact on Life and Society건축은 만드는 것이 아니라, 자라나는 것이다L'architecture comme impact sain sur la vie et la société
Archi-Therapy — the core philosophical language of FORUM D&P.아키테라피 — FORUM D&P의 핵심 철학 언어.Archi-Therapy — le langage philosophique fondamental.
Archi-Therapy means all therapeutic benefits of architectural activities and physical works — the starting point and core philosophical language of FORUM D&P.
Spaces that heal. Habiting is a ritual. Each building is a living organism.
아키테라피 — 건축 활동과 물리적 작업 전반의 모든 치유적 효과. FORUM D&P의 출발점이자 핵심 철학 언어.
공간은 치유한다. 거주는 의식이다. 모든 건물은 살아있는 유기체.
Archi-Therapy — tous les bénéfices thérapeutiques des activités architecturales. Le point de départ et le langage philosophique fondamental de FORUM D&P.
Les espaces guérissent. Habiter est un rituel.
← All Living Layers← 모든 Living Layers← Tous les Living Layers `;
const cm=document.querySelector('.w-code-input .cm-content, .code-editor .cm-content');
if(cm?._cmView?.view){const v=cm._cmView.view;v.dispatch({changes:{from:0,to:v.state.doc.length,insert:CODE}});console.log('CM6 SET OK, len:',v.state.doc.length);return;}
const ta=document.querySelector('textarea');if(ta){ta.value=CODE;ta.dispatchEvent(new InputEvent('input',{bubbles:true}));console.log('TEXTAREA SET OK, len:',ta.value.length);return;}console.error('NO EDITOR FOUND');
})();