Module:xchc-noun: Difference between revisions
Jump to navigation
Jump to search
(Created page with "local export = {} return export") |
No edit summary |
||
Line 1: | Line 1: | ||
local sub = mw.ustring.sub | |||
local find = mw.ustring.find | |||
local match = mw.ustring.match | |||
local gmatch = mw.ustring.gmatch | |||
local gsub = mw.ustring.gsub | |||
local u = mw.ustring.char | |||
local split = mw.text.split | |||
local gsplit = mw.text.gsplit | |||
local m_tr = require('Module:xchc-translit').tr | |||
local lang = require('Module:languages').getByCode("xchc") | |||
local export = {} | local export = {} | ||
function export.getBacknessHarmony(word) | |||
word = mw.ustring.lowercase(word) | |||
return word | |||
end | |||
return export | return export |
Revision as of 23:50, 6 December 2023
- The following documentation is located at Module:xchc-noun/doc.[edit]
- Useful links: subpage list • links • transclusions • testcases • sandbox
local sub = mw.ustring.sub
local find = mw.ustring.find
local match = mw.ustring.match
local gmatch = mw.ustring.gmatch
local gsub = mw.ustring.gsub
local u = mw.ustring.char
local split = mw.text.split
local gsplit = mw.text.gsplit
local m_tr = require('Module:xchc-translit').tr
local lang = require('Module:languages').getByCode("xchc")
local export = {}
function export.getBacknessHarmony(word)
word = mw.ustring.lowercase(word)
return word
end
return export