최상위 10_Wiki/Topic_*였던 4개 카테고리 폴더를 10_Wiki/Topics/Topic_* 로 재배치.
콘텐츠 변경 없음(순수 폴더 이동) — Topics/ 하위 나머지 폴더는 이미 지난 커밋에서
전부 정리된 상태(잔존 항목은 에이전트 운영 상태 및 사용자가 보존을 요청한
업데이트0615/무제 3.canvas 뿐).
"매 HTML/XML document 의 tree 표현, language-agnostic API". W3C 표준 (1998), 현재 WHATWG DOM Living Standard. 매 browser 매 internal representation; 2026 현재 React/Vue/Solid 매 abstraction layer 위에 있지만, performance/edge cases 매 직접 DOM 이해 매 essential.
매 핵심
매 구조
Document root.
Element node (<div>, <p>).
Text node (literal text).
Attribute (element 의 property; not separate child node since DOM4).
Comment node.
DocumentFragment — lightweight sub-tree, not connected.
constfrag=document.createDocumentFragment();for(constitemofitems){constli=document.createElement('li');li.textContent=item.name;frag.append(li);}list.append(frag);// single reflow