<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://capipedia.cap.gov/index.php?action=history&amp;feed=atom&amp;title=Module%3AOutdent</id>
	<title>Module:Outdent - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://capipedia.cap.gov/index.php?action=history&amp;feed=atom&amp;title=Module%3AOutdent"/>
	<link rel="alternate" type="text/html" href="https://capipedia.cap.gov/index.php?title=Module:Outdent&amp;action=history"/>
	<updated>2026-04-22T08:38:19Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.45.1</generator>
	<entry>
		<id>https://capipedia.cap.gov/index.php?title=Module:Outdent&amp;diff=6945&amp;oldid=prev</id>
		<title>NMcLarty27: 1 revision imported</title>
		<link rel="alternate" type="text/html" href="https://capipedia.cap.gov/index.php?title=Module:Outdent&amp;diff=6945&amp;oldid=prev"/>
		<updated>2024-01-23T18:24:18Z</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 14:24, 23 January 2024&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>NMcLarty27</name></author>
	</entry>
	<entry>
		<id>https://capipedia.cap.gov/index.php?title=Module:Outdent&amp;diff=6944&amp;oldid=prev</id>
		<title>en&gt;Primefac: update per style guide (TPER)</title>
		<link rel="alternate" type="text/html" href="https://capipedia.cap.gov/index.php?title=Module:Outdent&amp;diff=6944&amp;oldid=prev"/>
		<updated>2021-09-18T23:44:57Z</updated>

		<summary type="html">&lt;p&gt;update per style guide (TPER)&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.outdent (frame) &lt;br /&gt;
	local args = getArgs(frame)&lt;br /&gt;
	local width = 0&lt;br /&gt;
	&lt;br /&gt;
	local reversed = args[&amp;#039;reverse&amp;#039;] or args[&amp;#039;indent&amp;#039;] or args[&amp;#039;r&amp;#039;] or args[&amp;#039;in&amp;#039;]	-- aliases for reverse&lt;br /&gt;
	if not args[1] then args[1] = &amp;#039;&amp;#039; end                                        -- un-nil args[1]&lt;br /&gt;
	&lt;br /&gt;
	width = width + select(2, string.gsub(args[1],&amp;#039;:&amp;#039;,&amp;#039;&amp;#039;))						-- increase by 1 for every :&lt;br /&gt;
	width = width + select(2, string.gsub(args[1],&amp;#039;*&amp;#039;,&amp;#039;&amp;#039;))						-- increase by 1 for every *&lt;br /&gt;
	width = width + select(2, string.gsub(args[1],&amp;#039;#&amp;#039;,&amp;#039;&amp;#039;)) * 2					-- increase by 2 for every #&lt;br /&gt;
	&lt;br /&gt;
	if width == 0 then width = tonumber(args[1]) end							-- set width to args[1] if needed&lt;br /&gt;
&lt;br /&gt;
	if not width then width = 10 end											-- default width&lt;br /&gt;
	if width &amp;lt; 0&lt;br /&gt;
	then&lt;br /&gt;
		width = -width&lt;br /&gt;
		reversed = not reversed&lt;br /&gt;
	end&lt;br /&gt;
	if width &amp;gt; 40 then width = 40 end											-- max width&lt;br /&gt;
	&lt;br /&gt;
	width = width * 1.6															-- set width to proper width&lt;br /&gt;
	&lt;br /&gt;
	local top = &amp;#039;&amp;lt;span style=&amp;quot;display:block;width:&amp;#039; .. width .. &amp;#039;em;height:0.5em;&amp;#039; .. (width == 0 and &amp;#039;&amp;#039; or &amp;#039;border-bottom:1px solid #a2a9b1;&amp;#039;) .. &amp;#039;border-&amp;#039; .. ((width == 0 or reversed) and &amp;#039;left&amp;#039; or &amp;#039;right&amp;#039;) ..&amp;#039;:1px solid #a2a9b1;&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;&amp;#039; -- top half&lt;br /&gt;
	local bottom = &amp;#039;&amp;lt;span style=&amp;quot;display:block;width:&amp;#039; .. width .. &amp;#039;em;height:0.5em;border-&amp;#039; .. (reversed and &amp;#039;right&amp;#039; or &amp;#039;left&amp;#039;) .. &amp;#039;:1px solid #a2a9b1;&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;&amp;#039; -- bottom half&lt;br /&gt;
	local note = args[2] and &amp;#039;&amp;lt;span&amp;gt;([[Wikipedia:Indentation#Outdenting|outdent]])&amp;amp;#32;&amp;lt;/span&amp;gt;&amp;#039; or &amp;#039;&amp;#039; -- note&lt;br /&gt;
	&lt;br /&gt;
	return &amp;#039;&amp;lt;div class=&amp;quot;outdent-template&amp;quot; style=&amp;quot;position:relative;left:1px;&amp;quot;&amp;gt;&amp;#039; .. top .. bottom .. note .. &amp;#039;&amp;lt;/div&amp;gt;&amp;#039;;&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
return p&lt;/div&gt;</summary>
		<author><name>en&gt;Primefac</name></author>
	</entry>
</feed>