<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="ja">
	<id>https://wikiminati.blogmanju.com/wikim/index.php?action=history&amp;feed=atom&amp;title=%E3%83%A2%E3%82%B8%E3%83%A5%E3%83%BC%E3%83%AB%3AOutdent</id>
	<title>モジュール:Outdent - 版の履歴</title>
	<link rel="self" type="application/atom+xml" href="https://wikiminati.blogmanju.com/wikim/index.php?action=history&amp;feed=atom&amp;title=%E3%83%A2%E3%82%B8%E3%83%A5%E3%83%BC%E3%83%AB%3AOutdent"/>
	<link rel="alternate" type="text/html" href="https://wikiminati.blogmanju.com/wikim/index.php?title=%E3%83%A2%E3%82%B8%E3%83%A5%E3%83%BC%E3%83%AB:Outdent&amp;action=history"/>
	<updated>2026-04-21T15:06:21Z</updated>
	<subtitle>このウィキのこのページに関する変更履歴</subtitle>
	<generator>MediaWiki 1.39.2</generator>
	<entry>
		<id>https://wikiminati.blogmanju.com/wikim/index.php?title=%E3%83%A2%E3%82%B8%E3%83%A5%E3%83%BC%E3%83%AB:Outdent&amp;diff=3072&amp;oldid=prev</id>
		<title>WikiminatiWebMaster: 1版 をインポートしました</title>
		<link rel="alternate" type="text/html" href="https://wikiminati.blogmanju.com/wikim/index.php?title=%E3%83%A2%E3%82%B8%E3%83%A5%E3%83%BC%E3%83%AB:Outdent&amp;diff=3072&amp;oldid=prev"/>
		<updated>2023-05-14T01:29:32Z</updated>

		<summary type="html">&lt;p&gt;1版 をインポートしました&lt;/p&gt;
&lt;table style=&quot;background-color: #fff; color: #202122;&quot; data-mw=&quot;interface&quot;&gt;
				&lt;col class=&quot;diff-marker&quot; /&gt;
				&lt;col class=&quot;diff-content&quot; /&gt;
				&lt;col class=&quot;diff-marker&quot; /&gt;
				&lt;col class=&quot;diff-content&quot; /&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;ja&quot;&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;← 古い版&lt;/td&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;2023年5月14日 (日) 10:29時点における版&lt;/td&gt;
				&lt;/tr&gt;
&lt;!-- diff cache key xs666319_wikiminati:diff::1.12:old-3071:rev-3072 --&gt;
&lt;/table&gt;</summary>
		<author><name>WikiminatiWebMaster</name></author>
	</entry>
	<entry>
		<id>https://wikiminati.blogmanju.com/wikim/index.php?title=%E3%83%A2%E3%82%B8%E3%83%A5%E3%83%BC%E3%83%AB:Outdent&amp;diff=3071&amp;oldid=prev</id>
		<title>Template:Talk quote block&gt;Primefac: update per style guide (TPER)</title>
		<link rel="alternate" type="text/html" href="https://wikiminati.blogmanju.com/wikim/index.php?title=%E3%83%A2%E3%82%B8%E3%83%A5%E3%83%BC%E3%83%AB:Outdent&amp;diff=3071&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;新規ページ&lt;/b&gt;&lt;/p&gt;&lt;div&gt;local p = {}&lt;br /&gt;
local getArgs = require('Module:Arguments').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['reverse'] or args['indent'] or args['r'] or args['in']	-- aliases for reverse&lt;br /&gt;
	if not args[1] then args[1] = '' end                                        -- un-nil args[1]&lt;br /&gt;
	&lt;br /&gt;
	width = width + select(2, string.gsub(args[1],':',''))						-- increase by 1 for every :&lt;br /&gt;
	width = width + select(2, string.gsub(args[1],'*',''))						-- increase by 1 for every *&lt;br /&gt;
	width = width + select(2, string.gsub(args[1],'#','')) * 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;lt;span style=&amp;quot;display:block;width:' .. width .. 'em;height:0.5em;' .. (width == 0 and '' or 'border-bottom:1px solid #a2a9b1;') .. 'border-' .. ((width == 0 or reversed) and 'left' or 'right') ..':1px solid #a2a9b1;&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;' -- top half&lt;br /&gt;
	local bottom = '&amp;lt;span style=&amp;quot;display:block;width:' .. width .. 'em;height:0.5em;border-' .. (reversed and 'right' or 'left') .. ':1px solid #a2a9b1;&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;' -- bottom half&lt;br /&gt;
	local note = args[2] and '&amp;lt;span&amp;gt;([[Wikipedia:Indentation#Outdenting|outdent]])&amp;amp;#32;&amp;lt;/span&amp;gt;' or '' -- note&lt;br /&gt;
	&lt;br /&gt;
	return '&amp;lt;div class=&amp;quot;outdent-template&amp;quot; style=&amp;quot;position:relative;left:1px;&amp;quot;&amp;gt;' .. top .. bottom .. note .. '&amp;lt;/div&amp;gt;';&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
return p&lt;/div&gt;</summary>
		<author><name>Template:Talk quote block&gt;Primefac</name></author>
	</entry>
</feed>