모듈:한자: 두 판 사이의 차이

편집 요약 없음
잔글 (Cerulean님이 모듈:If 문서를 넘겨주기를 만들지 않고 모듈:한자 정보/숨김 문서로 이동했습니다)
(차이 없음)

2021년 6월 28일 (월) 21:06 판

설명문서 [편집] [역사] [새로고침]
연습장이나 사용자 문서에서 틀의 사용이나 수정을 연습할 수 있습니다.
분류는 /설명문서에 넣어주세요.

local p = {}

function p.main(frame)
	local title = frame.args[1]
	local hanja = frame.args[2]
	if hanja == '' then
		return ''
	end
	return
	'<div class="NavFrame collapsed" style="border:none;">'..
		'<div class="NavHead">'..
			title..
		'</div>'..
		'<div class="NavContent">'..
			hanja..
		'</div>'..
	'</div>'
end

return p