이음위키에서 사용할 수 있는 모든 기록이 표시됩니다. 기록 종류나 사용자 이름(대소문자 구별) 또는 영향을 받는 문서(대소문자 구별)를 선택하여 범위를 좁혀서 살펴볼 수 있습니다.
- 2024년 6월 12일 (수) 14:04 젊은리버럴 토론 기여님이 모듈:Wikibase 문서를 만들었습니다 (새 문서: -- Module:Wikibase local p = {} -- Return the item ID of the item linked to the current page. function p.id(frame) if not mw.wikibase then return "wikibase module not found" end entity = mw.wikibase.getEntityObject() if entity == nil then return "(연결된 항목 없음)" end return entity.id end -- Return the label of a given data item. function p.label(frame) if frame.args[1] == nil then...)