Main public logs
Jump to navigation
Jump to search
Combined display of all available logs of Azupedia. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 12:50, 18 June 2025 Fire talk contribs created page Module:Ko-utils (Created page with "local p = {} local find = mw.ustring.find local hanja_ranges = "[〇㐀-䶿一-鿿﨎﨏﨑﨓﨔﨟﨡﨣﨤﨧-﨩𠀀-𪛟𪜀-𰀀-𲎯]" -- Decomposes Hangul into jamo (e.g. 한 (U+D55C) → ᄒ (U+1112), ᅡ (U+1161), ᆫ (U+11AB)) function p.decompose_hangul(text) return mw.ustring.gsub(text, "[가-힣]", mw.ustring.toNFD) end -- Returns boolean on whether input contains any Hangul text at all function p.contains_hangul(text) local hangul_ranges = "[ᄀ-...")