<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="ja">
	<id>https://wiki.s-bou.com/index.php?action=history&amp;feed=atom&amp;title=%E3%83%A2%E3%82%B8%E3%83%A5%E3%83%BC%E3%83%AB%3ASu</id>
	<title>モジュール:Su - 版の履歴</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.s-bou.com/index.php?action=history&amp;feed=atom&amp;title=%E3%83%A2%E3%82%B8%E3%83%A5%E3%83%BC%E3%83%AB%3ASu"/>
	<link rel="alternate" type="text/html" href="https://wiki.s-bou.com/index.php?title=%E3%83%A2%E3%82%B8%E3%83%A5%E3%83%BC%E3%83%AB:Su&amp;action=history"/>
	<updated>2026-04-10T05:33:21Z</updated>
	<subtitle>このウィキのこのページに関する変更履歴</subtitle>
	<generator>MediaWiki 1.36.2</generator>
	<entry>
		<id>https://wiki.s-bou.com/index.php?title=%E3%83%A2%E3%82%B8%E3%83%A5%E3%83%BC%E3%83%AB:Su&amp;diff=1200&amp;oldid=prev</id>
		<title>Administrator: 1版 をインポートしました</title>
		<link rel="alternate" type="text/html" href="https://wiki.s-bou.com/index.php?title=%E3%83%A2%E3%82%B8%E3%83%A5%E3%83%BC%E3%83%AB:Su&amp;diff=1200&amp;oldid=prev"/>
		<updated>2021-10-22T17:41:48Z</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;tr class=&quot;diff-title&quot; lang=&quot;ja&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;← 古い版&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;2021年10月22日 (金) 17:41時点における版&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-notice&quot; lang=&quot;ja&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(相違点なし)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>Administrator</name></author>
	</entry>
	<entry>
		<id>https://wiki.s-bou.com/index.php?title=%E3%83%A2%E3%82%B8%E3%83%A5%E3%83%BC%E3%83%AB:Su&amp;diff=1199&amp;oldid=prev</id>
		<title>ja&gt;K-iczn: en:Module:Su 2016年5月20日 (金) 11:53‎(UTC)より</title>
		<link rel="alternate" type="text/html" href="https://wiki.s-bou.com/index.php?title=%E3%83%A2%E3%82%B8%E3%83%A5%E3%83%BC%E3%83%AB:Su&amp;diff=1199&amp;oldid=prev"/>
		<updated>2016-05-20T15:29:16Z</updated>

		<summary type="html">&lt;p&gt;&lt;a href=&quot;/index.php?title=En:Module:Su&amp;amp;action=edit&amp;amp;redlink=1&quot; class=&quot;new&quot; title=&quot;En:Module:Su (存在しないページ)&quot;&gt;en:Module:Su&lt;/a&gt; 2016年5月20日 (金) 11:53‎(UTC)より&lt;/p&gt;
&lt;p&gt;&lt;b&gt;新規ページ&lt;/b&gt;&lt;/p&gt;&lt;div&gt;-- This module implements {{su}}.&lt;br /&gt;
&lt;br /&gt;
local p = {}&lt;br /&gt;
&lt;br /&gt;
function p.main(frame)&lt;br /&gt;
	-- Use arguments from the parent frame only, and remove any blank arguments.&lt;br /&gt;
	-- We don't need to trim whitespace from any arguments, as this module only&lt;br /&gt;
	-- uses named arguments, and whitespace is trimmed from them automatically. &lt;br /&gt;
	local origArgs = frame:getParent().args&lt;br /&gt;
	local args = {}&lt;br /&gt;
	for k, v in pairs(origArgs) do&lt;br /&gt;
		if v ~= '' then&lt;br /&gt;
			args[k] = v&lt;br /&gt;
		end&lt;br /&gt;
	end&lt;br /&gt;
&lt;br /&gt;
	-- Define the variables to pass to luaMain.&lt;br /&gt;
	local sup = args.p&lt;br /&gt;
	local sub = args.b&lt;br /&gt;
	local options = {&lt;br /&gt;
		align = args.a,&lt;br /&gt;
		fontSize = args.w,&lt;br /&gt;
		lineHeight = args.lh,&lt;br /&gt;
		verticalAlign = args.va&lt;br /&gt;
	}&lt;br /&gt;
	return p._main(sup, sub, options)&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
function p._main(sup, sub, options)&lt;br /&gt;
	options = options or {}&lt;br /&gt;
	local span = mw.html.create('span')&lt;br /&gt;
&lt;br /&gt;
	-- Set the styles.&lt;br /&gt;
	span:css{&lt;br /&gt;
		['display']        = 'inline-block',&lt;br /&gt;
		['margin-bottom']  = '-0.3em',&lt;br /&gt;
		['vertical-align'] = options.verticalAlign or sub and '-0.4em' or '0.8em',&lt;br /&gt;
		['line-height']    = options.lineHeight or '1.2em'&lt;br /&gt;
	}&lt;br /&gt;
	if options.fontSize == 'f' or options.fontSize == 'fixed' then&lt;br /&gt;
		span:css{&lt;br /&gt;
			['font-family'] = 'monospace,monospace',&lt;br /&gt;
			['font-size']   = '80%'&lt;br /&gt;
		}&lt;br /&gt;
	else&lt;br /&gt;
		span:css('font-size', options.fontSize and options.fontSize or '80%')&lt;br /&gt;
	end&lt;br /&gt;
	if options.align == 'r' or options.align == 'right' then&lt;br /&gt;
		span:css('text-align', 'right')&lt;br /&gt;
	elseif options.align == 'c' or options.align == 'center' then&lt;br /&gt;
		span:css('text-align', 'center')&lt;br /&gt;
	else&lt;br /&gt;
		span:css('text-align', 'left')&lt;br /&gt;
	end&lt;br /&gt;
&lt;br /&gt;
	-- Add the wikitext.&lt;br /&gt;
	span&lt;br /&gt;
		:wikitext(sup)&lt;br /&gt;
		:tag('br', {selfClosing = true}):done()&lt;br /&gt;
		:wikitext(sub)&lt;br /&gt;
	&lt;br /&gt;
	return tostring(span)&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
return p&lt;/div&gt;</summary>
		<author><name>ja&gt;K-iczn</name></author>
	</entry>
</feed>