이 문서의 설명문서는 모듈:glossary/data/설명문서에서 편집할 수 있습니다.

{
	["굴절어"] = true,
	["여성"] = true,
	["고립어"] = true,
	["능동태"] = true,
	["반사태"] = true,
	["격"] = true,
	["2인칭"] = true,
	["수동태"] = true,
	["1인칭"] = true,
	["교착어"] = true,
	["서술적"] = true,
	["남성"] = true,
	["문법적_성"] = true,
	["태"] = true,
	["주격"] = true,
	["부치사"] = true,
	["중성"] = true,
	["전지적"] = true,
	["완곡적"] = true,
	["사격"] = true,
	["법"] = true,
	["권장법"] = true,
	["성조"] = true,
	["쌍수"] = true,
	["성"] = true,
	["한정적"] = true,
	["수"] = true,
	["경사격"] = true,
}

local ugsub = mw.ustring.gsub

local anchors = {}

function format_anchor (anchor)
	return (ugsub(anchor, "[%s_]+", "_")) -- (multiple) spaces to underscores
end

for parameters in mw.title.new("부록:용어사전/초안"):getContent():gmatch("{{anchor|([^}]+)}}") do
	for anchor in parameters:gmatch("[^|]+") do
		anchors[format_anchor(anchor)] = true
	end
end

return anchors