View source for Module:Rhymes
Jump to navigation
Jump to search
You do not have permission to edit this page, for the following reason:
You can view and copy the source of this page.
local export = {}
local force_cat = false -- for testing
local function tag_rhyme(rhyme, lang)
local formatted_rhyme, cat
-- FIXME, should not be here. Telugu should use IPA as well.
if lang:getCode() == "te" then
formatted_rhyme = require("Module:script utilities").tag_text(rhyme, lang)
cat = ""
else
formatted_rhyme, cat = require("Module:IPA").format_IPA(lang, rhyme, true)
end
return formatted_rhyme, cat
end
local function make_rhyme_link(lang, link_rhyme, display_rhyme)
local retval
if not link_rhyme then
retval = table.concat{"[[:Category:Rhymes:", lang:getCanonicalName(), "|", lang:getCanonicalName(), "]]"}
000
1:0
Templates used on this page:
- Template:Documentation (view source)
- Template:Documentation needed (view source)
- Template:Maintenance box (view source)
- Template:Tracking/parameters/no calling function (view source)
- Template:Tracking/parameters/no calling module (view source)
- Module:Array (view source)
- Module:Debug/track (view source)
- Module:Documentation (view source)
- Module:Parameters (view source)
- Module:Rhymes/documentation (view source)
- Module:Table (view source)
Return to Module:Rhymes.