<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="zh-Hans-CN">
	<id>https://www.wikiw.cn/index.php?action=history&amp;feed=atom&amp;title=%E6%A8%A1%E5%9D%97%3AWikitextLC</id>
	<title>模块:WikitextLC - 版本历史</title>
	<link rel="self" type="application/atom+xml" href="https://www.wikiw.cn/index.php?action=history&amp;feed=atom&amp;title=%E6%A8%A1%E5%9D%97%3AWikitextLC"/>
	<link rel="alternate" type="text/html" href="https://www.wikiw.cn/index.php?title=%E6%A8%A1%E5%9D%97:WikitextLC&amp;action=history"/>
	<updated>2026-04-08T15:14:14Z</updated>
	<subtitle>本wiki上该页面的版本历史</subtitle>
	<generator>MediaWiki 1.44.0</generator>
	<entry>
		<id>https://www.wikiw.cn/index.php?title=%E6%A8%A1%E5%9D%97:WikitextLC&amp;diff=383&amp;oldid=prev</id>
		<title>Admin：​导入1个版本</title>
		<link rel="alternate" type="text/html" href="https://www.wikiw.cn/index.php?title=%E6%A8%A1%E5%9D%97:WikitextLC&amp;diff=383&amp;oldid=prev"/>
		<updated>2025-06-20T17:02:26Z</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;zh-Hans-CN&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;2025年6月21日 (六) 01:02的版本&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-notice&quot; lang=&quot;zh-Hans-CN&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>Admin</name></author>
	</entry>
	<entry>
		<id>https://www.wikiw.cn/index.php?title=%E6%A8%A1%E5%9D%97:WikitextLC&amp;diff=382&amp;oldid=prev</id>
		<title>wikiw&gt;Bluedeck：​EP</title>
		<link rel="alternate" type="text/html" href="https://www.wikiw.cn/index.php?title=%E6%A8%A1%E5%9D%97:WikitextLC&amp;diff=382&amp;oldid=prev"/>
		<updated>2018-04-30T03:30:34Z</updated>

		<summary type="html">&lt;p&gt;EP&lt;/p&gt;
&lt;p&gt;&lt;b&gt;新页面&lt;/b&gt;&lt;/p&gt;&lt;div&gt;local p = {}&lt;br /&gt;
&lt;br /&gt;
--- Construct an inline conversion from a table input.&lt;br /&gt;
-- @param content table of the form&lt;br /&gt;
--        { [&amp;quot;zh-cn&amp;quot;]=&amp;#039;foobar&amp;#039;, [&amp;quot;zh-tw&amp;quot;]=&amp;#039;firecat&amp;#039;, [&amp;quot;zh-hk&amp;quot;]=&amp;#039;&amp;#039; }&lt;br /&gt;
-- @returns string&lt;br /&gt;
--       &amp;quot;-{zh-cn:foobar;zh-tw:firecat;zh-hk:&amp;lt;span&amp;gt;&amp;lt;/span&amp;gt;}-&amp;quot;&lt;br /&gt;
--&lt;br /&gt;
-- @fixme allow for generating output without &amp;quot;-{&amp;quot; &amp;quot;}-&amp;quot;, so that&lt;br /&gt;
--        it can be used with the last three wrappers.&lt;br /&gt;
function p.selective( content )&lt;br /&gt;
    local text = &amp;#039;-{&amp;#039;&lt;br /&gt;
    for variant, value in pairs( content ) do&lt;br /&gt;
        if value == &amp;#039;&amp;#039; then&lt;br /&gt;
            value = &amp;#039;&amp;lt;span&amp;gt;&amp;lt;/span&amp;gt;&amp;#039;&lt;br /&gt;
        end&lt;br /&gt;
        text = text .. variant .. &amp;#039;:&amp;#039; .. value .. &amp;#039;;&amp;#039;&lt;br /&gt;
    end&lt;br /&gt;
    text = text .. &amp;#039;}-&amp;#039;&lt;br /&gt;
    return text&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
--- Write some text with a limited set of variants to convert to&lt;br /&gt;
--&lt;br /&gt;
-- @param content text to be written&lt;br /&gt;
-- @param variant a variant (string), or a list of variants&lt;br /&gt;
--        (semicolon-deliminated string, or table of strings)&lt;br /&gt;
-- @param[opt] force convert even under &amp;quot;zh&amp;quot; (no conversion) locale&lt;br /&gt;
function p.converted( content, variant, force )&lt;br /&gt;
    if type( variant ) == &amp;#039;table&amp;#039; then&lt;br /&gt;
        variant = table.concat( variant, &amp;#039;;&amp;#039; )&lt;br /&gt;
    end&lt;br /&gt;
    return &amp;#039;-{&amp;#039; .. ( force and &amp;#039;&amp;#039; or &amp;#039;zh;&amp;#039; ) .. variant .. &amp;#039;|&amp;#039; .. content .. &amp;#039;}-&amp;#039;&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
--- Wraps some &amp;quot;raw text&amp;quot; to not convert.&lt;br /&gt;
--&lt;br /&gt;
-- @fixme Is the &amp;quot;R&amp;quot; flag some undocumented/undefined no-op magic?&lt;br /&gt;
--        Are we using it instead of the old &amp;#039;-{&amp;#039; .. content .. &amp;#039;}-&amp;#039;&lt;br /&gt;
--        to avoid confusion caused by a flag in the &amp;quot;content&amp;quot;?&lt;br /&gt;
function p.raw( content )&lt;br /&gt;
    return &amp;#039;-{R|&amp;#039; .. content .. &amp;#039;}-&amp;#039;&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
--- Wraps a title conversion rule.&lt;br /&gt;
function p.title( content )&lt;br /&gt;
    return &amp;#039;-{T|&amp;#039; .. content .. &amp;#039;}-&amp;#039;&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
--- Wraps a (hidden) conversion rule definition.&lt;br /&gt;
function p.hidden( content )&lt;br /&gt;
    return &amp;#039;-{H|&amp;#039; .. content .. &amp;#039;}-&amp;#039;&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
return p&lt;/div&gt;</summary>
		<author><name>wikiw&gt;Bluedeck</name></author>
	</entry>
</feed>