×
Create a new article
Write your page title here:
We currently have 69 articles on Super Shiritori Wiki. Type your article name above or click on one of the titles below and start writing!



Super Shiritori Wiki
Revision as of 23:33, 7 May 2026 by imported>BlankEntity (Created page with "-- Prevent substitution. if mw.isSubsting() then return require("Module:unsubst") end local m_anchors = require("Module:anchors") local load_data = mw.loadData local process_params = require("Module:parameters").process local export = {} function export.anchor_t(frame) return m_anchors.make_anchors(process_params(frame:getParent().args, load_data("Module:parameters/data").anchor)[1]) end function export.senseid_t(frame) local args = process_params(frame:getParent...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Welcome to Super-Shiritori!

Please remember:

  • No vandalism – Do not add nonsense, false info, spam, or blank pages.
  • Respect others – Be polite and assume good faith.
  • Use reliable information – Make sure edits are accurate and IMPORTANT.
  • Stay constructive – Help us grow the wiki with content, especially with the Word compendium.

⚠️ Repeated vandalism or rule-breaking may result in warnings or blocks. If you see vandalism, please revert it and notify an admin.

Documentation for this module may be created at Module:Anchors/templates/doc

-- Prevent substitution.
if mw.isSubsting() then
	return require("Module:unsubst")
end

local m_anchors = require("Module:anchors")

local load_data = mw.loadData
local process_params = require("Module:parameters").process

local export = {}

function export.anchor_t(frame)
	return m_anchors.make_anchors(process_params(frame:getParent().args, load_data("Module:parameters/data").anchor)[1])
end

function export.senseid_t(frame)
	local args = process_params(frame:getParent().args, load_data("Module:parameters/data").senseid)
	return m_anchors.senseid(args[1], args[2], args.tag)
end

function export.etymid_t(frame)
	local args = process_params(frame:getParent().args, load_data("Module:parameters/data").etymid)
	return m_anchors.etymid(args[1], args[2])
end

return export