<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://luteandlore.ink/wiki/index.php?action=history&amp;feed=atom&amp;title=Module%3AEp</id>
	<title>Module:Ep - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://luteandlore.ink/wiki/index.php?action=history&amp;feed=atom&amp;title=Module%3AEp"/>
	<link rel="alternate" type="text/html" href="https://luteandlore.ink/wiki/index.php?title=Module:Ep&amp;action=history"/>
	<updated>2026-09-16T22:05:33Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.44.2</generator>
	<entry>
		<id>https://luteandlore.ink/wiki/index.php?title=Module:Ep&amp;diff=480&amp;oldid=prev</id>
		<title>Thaskthebard: 1 revision imported</title>
		<link rel="alternate" type="text/html" href="https://luteandlore.ink/wiki/index.php?title=Module:Ep&amp;diff=480&amp;oldid=prev"/>
		<updated>2025-12-09T15:34:42Z</updated>

		<summary type="html">&lt;p&gt;1 revision imported&lt;/p&gt;
&lt;table style=&quot;background-color: #fff; color: #202122;&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;en&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;← Older revision&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;Revision as of 11:34, 9 December 2025&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-notice&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>Thaskthebard</name></author>
	</entry>
	<entry>
		<id>https://luteandlore.ink/wiki/index.php?title=Module:Ep&amp;diff=479&amp;oldid=prev</id>
		<title>criticalrole&gt;Dexcuracy: Undo Ep call category. Was used to spot all uses of Ep calls</title>
		<link rel="alternate" type="text/html" href="https://luteandlore.ink/wiki/index.php?title=Module:Ep&amp;diff=479&amp;oldid=prev"/>
		<updated>2019-04-17T19:32:48Z</updated>

		<summary type="html">&lt;p&gt;Undo Ep call category. Was used to spot all uses of Ep calls&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;&lt;br /&gt;
-- TODO This needs to be able to cope with campaign numbers, the CxEE format should be depricated&lt;br /&gt;
&lt;br /&gt;
local p = {}&lt;br /&gt;
 &lt;br /&gt;
-- function to retrieve and format the episode name&lt;br /&gt;
function p.ep(frame)&lt;br /&gt;
    local reference = false&lt;br /&gt;
 &lt;br /&gt;
    local epSwitcher = require(&amp;#039;Module:Ep/Switcher&amp;#039;)&lt;br /&gt;
    local epName, CxEE = epSwitcher.epSwitcher(frame, reference)&lt;br /&gt;
    &lt;br /&gt;
    -- if there is no CxEE code, then just return  the episode name without any further formatting&lt;br /&gt;
    if not isnotempty(CxEE) then return epName end&lt;br /&gt;
 &lt;br /&gt;
    -- &amp;lt;small&amp;gt;(CxEE)&amp;lt;/small&amp;gt;&lt;br /&gt;
    local small = mw.html.create(&amp;#039;small&amp;#039;)&lt;br /&gt;
    small&lt;br /&gt;
        :wikitext(&amp;quot;(&amp;quot; .. CxEE .. &amp;quot;)&amp;quot;)&lt;br /&gt;
 &lt;br /&gt;
    -- formatting with the various parameters of {{ep}}&lt;br /&gt;
    local text = frame.args[&amp;quot;text&amp;quot;] or nil&lt;br /&gt;
    local nolink = frame.args[&amp;quot;nolink&amp;quot;] or nil&lt;br /&gt;
    local after = frame.args[&amp;quot;after&amp;quot;] or nil&lt;br /&gt;
    local bold = frame.args[&amp;quot;bold&amp;quot;] or nil&lt;br /&gt;
    local plain = frame.args[&amp;quot;plain&amp;quot;] or nil&lt;br /&gt;
    local hide = frame.args[&amp;quot;hide&amp;quot;] or nil&lt;br /&gt;
 &lt;br /&gt;
    -- variable used when nolink or text are true for episodes with italics in the name&lt;br /&gt;
    local italEp&lt;br /&gt;
    if string.find(epName, &amp;quot;|&amp;quot;) then italEp = split(epName, &amp;quot;|&amp;quot;) end&lt;br /&gt;
 &lt;br /&gt;
    if isnotempty(text) and not isnotempty(nolink) and string.find(epName, &amp;quot;|&amp;quot;) then epName = italEp[1] .. &amp;quot;|&amp;quot; .. text&lt;br /&gt;
    elseif isnotempty(text) and not isnotempty(nolink) then epName = epName .. &amp;quot;|&amp;quot; .. text&lt;br /&gt;
    elseif isnotempty(text) and isnotempty(nolink) then epName = text end&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
    if isnotempty(nolink) and string.find(epName, &amp;quot;|&amp;quot;) then epName = italEp[2]&lt;br /&gt;
    elseif not isnotempty(nolink) then epName = &amp;quot;[[&amp;quot; .. epName .. &amp;quot;]]&amp;quot; end&lt;br /&gt;
 &lt;br /&gt;
    if isnotempty(after) then epName = epName .. after end&lt;br /&gt;
 &lt;br /&gt;
    if isnotempty(bold) then epName = &amp;quot;&amp;#039;&amp;#039;&amp;#039;&amp;quot; .. epName .. &amp;quot;&amp;#039;&amp;#039;&amp;#039;&amp;quot; end&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
    if not isnotempty(plain) then epName = &amp;quot;\&amp;quot;&amp;quot; .. epName .. &amp;quot;\&amp;quot;&amp;quot; end&lt;br /&gt;
 &lt;br /&gt;
    local fullEpName = epName .. &amp;quot; &amp;quot; .. tostring(small)&lt;br /&gt;
 &lt;br /&gt;
    if isnotempty(hide) then return epName&lt;br /&gt;
        else return fullEpName end&lt;br /&gt;
 &lt;br /&gt;
end&lt;br /&gt;
 &lt;br /&gt;
-- function to split a string at a specified character&lt;br /&gt;
function split(s, delimiter)&lt;br /&gt;
    result = {};&lt;br /&gt;
    for match in (s..delimiter):gmatch(&amp;quot;(.-)&amp;quot;..delimiter) do&lt;br /&gt;
        table.insert(result, match);&lt;br /&gt;
    end&lt;br /&gt;
    return result;&lt;br /&gt;
end&lt;br /&gt;
 &lt;br /&gt;
-- function to determine that a variable has a value&lt;br /&gt;
function isnotempty(s)&lt;br /&gt;
    return s ~= nil and s~= &amp;#039;&amp;#039;&lt;br /&gt;
end&lt;br /&gt;
 &lt;br /&gt;
return p&lt;/div&gt;</summary>
		<author><name>criticalrole&gt;Dexcuracy</name></author>
	</entry>
</feed>