Module:Ko-utils: Revision history

Jump to navigation Jump to search

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

18 June 2025

  • curprev 12:5012:50, 18 June 2025 Fire talk contribs 1,203 bytes +1,203 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 = "[ᄀ-..."