<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>https://wiki.agency/index.php?action=history&amp;feed=atom&amp;title=Module%3ARespell</id>
		<title>Module:Respell - Revision history</title>
		<link rel="self" type="application/atom+xml" href="https://wiki.agency/index.php?action=history&amp;feed=atom&amp;title=Module%3ARespell"/>
		<link rel="alternate" type="text/html" href="https://wiki.agency/index.php?title=Module:Respell&amp;action=history"/>
		<updated>2026-04-05T13:42:44Z</updated>
		<subtitle>Revision history for this page on the wiki</subtitle>
		<generator>MediaWiki 1.30.1</generator>

	<entry>
		<id>https://wiki.agency/index.php?title=Module:Respell&amp;diff=676&amp;oldid=prev</id>
		<title>Admin: 1 revision imported</title>
		<link rel="alternate" type="text/html" href="https://wiki.agency/index.php?title=Module:Respell&amp;diff=676&amp;oldid=prev"/>
				<updated>2018-10-24T22:40:58Z</updated>
		
		<summary type="html">&lt;p&gt;1 revision imported&lt;/p&gt;
&lt;table class=&quot;diff diff-contentalign-left&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr style=&quot;vertical-align: top;&quot; lang=&quot;en&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: white; color:black; text-align: center;&quot;&gt;← Older revision&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: white; color:black; text-align: center;&quot;&gt;Revision as of 22:40, 24 October 2018&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; style=&quot;text-align: center;&quot; lang=&quot;en&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(No difference)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>Admin</name></author>	</entry>

	<entry>
		<id>https://wiki.agency/index.php?title=Module:Respell&amp;diff=675&amp;oldid=prev</id>
		<title>Nardog: abandon small/bold, instead lower stressed syllables per discussion at Template talk:Respell</title>
		<link rel="alternate" type="text/html" href="https://wiki.agency/index.php?title=Module:Respell&amp;diff=675&amp;oldid=prev"/>
				<updated>2017-12-28T14:53:35Z</updated>
		
		<summary type="html">&lt;p&gt;abandon small/bold, instead lower stressed syllables per discussion at &lt;a href=&quot;/index.php?title=Template_talk:Respell&amp;amp;action=edit&amp;amp;redlink=1&quot; class=&quot;new&quot; title=&quot;Template talk:Respell (page does not exist)&quot;&gt;Template talk:Respell&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;local p = {}&lt;br /&gt;
local getArgs = require(&amp;#039;Module:Arguments&amp;#039;).getArgs&lt;br /&gt;
&lt;br /&gt;
function p._main(args)&lt;br /&gt;
	local ret = {}&lt;br /&gt;
	local hasUnsc = {}&lt;br /&gt;
	local j = 0&lt;br /&gt;
	&lt;br /&gt;
	for i, v in ipairs(args) do&lt;br /&gt;
		-- Compatibility: Ignore arguments that only contain an apostrophe&lt;br /&gt;
		if v and v ~= &amp;#039;&amp;#039; and v ~= &amp;quot;&amp;#039;&amp;quot; then&lt;br /&gt;
			hasUnsc[i] = mw.ustring.find(v, &amp;#039;_&amp;#039;)&lt;br /&gt;
			if hasUnsc[i] then&lt;br /&gt;
				v = mw.ustring.gsub(v, &amp;#039;_&amp;#039;, &amp;#039; &amp;#039;)&lt;br /&gt;
			else&lt;br /&gt;
				if mw.ustring.find(v, &amp;#039;%u&amp;#039;) and v == mw.ustring.upper(v) then&lt;br /&gt;
					local span = mw.html.create(&amp;#039;span&amp;#039;)&lt;br /&gt;
						:css(&amp;#039;font-size&amp;#039;, &amp;#039;90%&amp;#039;)&lt;br /&gt;
						:wikitext(v)&lt;br /&gt;
					v = tostring(span)&lt;br /&gt;
				end&lt;br /&gt;
				if i ~= 1 and not hasUnsc[i - 1] and v ~= &amp;#039;-&amp;#039; then&lt;br /&gt;
					table.insert(ret, &amp;#039;-&amp;#039;)&lt;br /&gt;
				end&lt;br /&gt;
			end&lt;br /&gt;
			table.insert(ret, v)&lt;br /&gt;
		end&lt;br /&gt;
		j = i&lt;br /&gt;
	end&lt;br /&gt;
	&lt;br /&gt;
	-- Create &amp;lt;i title=&amp;quot;...&amp;quot;&amp;gt;...&amp;lt;/i&amp;gt;&lt;br /&gt;
	local italic = mw.html.create(&amp;#039;i&amp;#039;)&lt;br /&gt;
		:attr(&amp;#039;title&amp;#039;, &amp;#039;English pronunciation respelling&amp;#039;)&lt;br /&gt;
		:wikitext(table.concat(ret))&lt;br /&gt;
	ret = tostring(italic)&lt;br /&gt;
	&lt;br /&gt;
	-- For documentation: Disable linking by adding a blank parameter at the end&lt;br /&gt;
	if args[j] ~= &amp;#039;&amp;#039; then &lt;br /&gt;
		ret = string.format(&amp;#039;[[Help:Pronunciation respelling key|%s]]&amp;#039;, ret)&lt;br /&gt;
	end&lt;br /&gt;
	&lt;br /&gt;
	return ret&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
function p.main(frame)&lt;br /&gt;
	local args = getArgs(frame, {removeBlanks = false})&lt;br /&gt;
	return p._main(args)&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
return p&lt;/div&gt;</summary>
		<author><name>Nardog</name></author>	</entry>

	</feed>