문서 편집 권한이 없습니다. 다음 이유를 확인해주세요: 요청한 명령은 다음 중 하나의 권한을 가진 사용자에게 제한됩니다: 사용자, 관리자. 문서를 고치려면 이메일 인증 절차가 필요합니다. 사용자 환경 설정에서 이메일 주소를 입력하고 이메일 주소 인증을 해주시기 바랍니다. 문서의 원본을 보거나 복사할 수 있습니다. local p = {} function p.addDots(frame) local input = frame.args[1] or '' local dot = frame.args['dot'] or '•' input = mw.text.decode(tostring(input)) if mw.ustring.len(input) == 0 then return '<span style="color:red;">[오류: 입력값 없음]</span>' end local result = {} for i = 1, mw.ustring.len(input) do local ch = mw.ustring.sub(input, i, i) -- 공백 문자는 그대로 출력 (강조점 생략) if mw.ustring.match(ch, '%s') then table.insert(result, ch) else table.insert(result, string.format('<ruby>%s<rt>%s</rt></ruby>', ch, dot)) end end return table.concat(result) end return p 이 문서에서 사용한 틀: 틀:Brbr (원본 보기) 틀:Namucat/css (원본 보기) 틀:Namucat/styles.css (원본 보기) 틀:Navbarcolor (원본 보기) 틀:Sidebarcolor (원본 보기) 틀:Widen (원본 보기) 틀:관련 문서2 (원본 보기) 틀:내비게이션 바 색상 (원본 보기) 틀:사이드 바 색상 (원본 보기) 틀:여백 (원본 보기) 틀:편집 버튼 (원본 보기) 모듈:DotEmphasis/설명문서 (원본 보기) 모듈:DotEmphasis 문서로 돌아갑니다.