문서 편집 권한이 없습니다. 다음 이유를 확인해주세요: 요청한 명령은 다음 권한을 가진 사용자에게 제한됩니다: 사용자. 문서의 원본을 보거나 복사할 수 있습니다. -- Module:Dictionary ▼전체 교체 local p = {} local encode = mw.text.encode local data = mw.loadData('Module:Dictionary/data') function p.render(frame) -- ① 검색 UI가 들어갈 빈 컨테이너 local out = { '<div class="dictionary-container dict-card"></div>' } -- ② 숨겨 둔 JSON (XSS 방지 HTML-escape) out[#out+1] = '<div id="dictionary-json" style="display:none">' .. encode(mw.text.jsonEncode(data)) .. '</div>' return table.concat(out, '\n') end return p 이 문서에서 사용한 틀: 모듈:Dictionary/설명문서 (원본 보기) 모듈:Dictionary 문서로 돌아갑니다.