<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://blackwiki.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=27.131.47.131&amp;*</id>
	<title>blackwiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://blackwiki.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=27.131.47.131&amp;*"/>
	<link rel="alternate" type="text/html" href="https://blackwiki.org/index.php?title=Special:Contributions/27.131.47.131"/>
	<updated>2026-08-18T07:12:02Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.34.2</generator>
	<entry>
		<id>https://blackwiki.org/index.php?title=Template:Islamic_State_of_Iraq_and_the_Levant&amp;diff=6495758</id>
		<title>Template:Islamic State of Iraq and the Levant</title>
		<link rel="alternate" type="text/html" href="https://blackwiki.org/index.php?title=Template:Islamic_State_of_Iraq_and_the_Levant&amp;diff=6495758"/>
		<updated>2015-06-30T13:10:44Z</updated>

		<summary type="html">&lt;p&gt;27.131.47.131: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{#invoke:Escape|main}}&lt;/div&gt;</summary>
		<author><name>27.131.47.131</name></author>
		
	</entry>
	<entry>
		<id>https://blackwiki.org/index.php?title=Template:Islamic_State_of_Iraq_and_the_Levant&amp;diff=6495757</id>
		<title>Template:Islamic State of Iraq and the Levant</title>
		<link rel="alternate" type="text/html" href="https://blackwiki.org/index.php?title=Template:Islamic_State_of_Iraq_and_the_Levant&amp;diff=6495757"/>
		<updated>2015-06-30T13:09:53Z</updated>

		<summary type="html">&lt;p&gt;27.131.47.131: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{#invoke:Escape}}&lt;/div&gt;</summary>
		<author><name>27.131.47.131</name></author>
		
	</entry>
	<entry>
		<id>https://blackwiki.org/index.php?title=Template:Islamic_State_of_Iraq_and_the_Levant&amp;diff=6495756</id>
		<title>Template:Islamic State of Iraq and the Levant</title>
		<link rel="alternate" type="text/html" href="https://blackwiki.org/index.php?title=Template:Islamic_State_of_Iraq_and_the_Levant&amp;diff=6495756"/>
		<updated>2015-06-30T13:09:20Z</updated>

		<summary type="html">&lt;p&gt;27.131.47.131: ←Replaced content with '{{invoke:Escape}}'&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{invoke:Escape}}&lt;/div&gt;</summary>
		<author><name>27.131.47.131</name></author>
		
	</entry>
	<entry>
		<id>https://blackwiki.org/index.php?title=Module:Escape&amp;diff=279692</id>
		<title>Module:Escape</title>
		<link rel="alternate" type="text/html" href="https://blackwiki.org/index.php?title=Module:Escape&amp;diff=279692"/>
		<updated>2015-06-30T13:05:01Z</updated>

		<summary type="html">&lt;p&gt;27.131.47.131: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;local escape = {&lt;br /&gt;
	char = function(self, chr, args)&lt;br /&gt;
		args = args or {}&lt;br /&gt;
		local safe = args.safeChr or string.char(13)&lt;br /&gt;
		chr = tostring(chr or '\\')&lt;br /&gt;
		self[1] = ('%s0%%s%s'):format(&lt;br /&gt;
			('%x%s%s'):format(chr:byte(), safe, safe),&lt;br /&gt;
			('%s%x'):format(safe, chr:byte())&lt;br /&gt;
		)&lt;br /&gt;
		if not self[self[1]] then&lt;br /&gt;
			self[self[1]] = {&lt;br /&gt;
				char = chr,&lt;br /&gt;
				text = ('%s(.)'):format(chr),&lt;br /&gt;
				undo = self[1]:format'(%d+)'&lt;br /&gt;
			}&lt;br /&gt;
		end&lt;br /&gt;
		return args.text and self:text(args.text)&lt;br /&gt;
			or args.undo and self:undo(args.undo, chr)&lt;br /&gt;
			or args.kill and self:kill(args.kill)&lt;br /&gt;
			or self&lt;br /&gt;
	end,&lt;br /&gt;
	exec = function(self, text, mode, newEscape)&lt;br /&gt;
		local target = self[self[1] or self:char() and self[1]]&lt;br /&gt;
		for v in text:gfind(target[mode]) do&lt;br /&gt;
			text = text:gsub(&lt;br /&gt;
				mode == 'text' and&lt;br /&gt;
					('%s%s'):format(target.char, v:gsub('%W', '%%%1'))&lt;br /&gt;
					or self[1]:format(v),&lt;br /&gt;
				mode == 'text' and&lt;br /&gt;
					self[1]:format(v:byte())&lt;br /&gt;
					or (newEscape or '') .. v:char()&lt;br /&gt;
			)&lt;br /&gt;
		end&lt;br /&gt;
		return text&lt;br /&gt;
	end,&lt;br /&gt;
	text = function(self, text)&lt;br /&gt;
		return self:exec(type(text) == 'table' and text[1] or text, 'text')&lt;br /&gt;
	end,&lt;br /&gt;
	undo = function(self, text, newEscape)&lt;br /&gt;
		if type(text) == 'table' then&lt;br /&gt;
			text, newEscape = unpack(text)&lt;br /&gt;
		end&lt;br /&gt;
		return self:exec(text, 'undo', newEscape)&lt;br /&gt;
	end,&lt;br /&gt;
	kill = function(self, text, chars, newEscape)&lt;br /&gt;
		if type(text) == 'table' then&lt;br /&gt;
			text, chars, newEscape = unpack(text)&lt;br /&gt;
		end&lt;br /&gt;
		return self:undo(self:text(text):gsub(chars or '', ''), newEscape)&lt;br /&gt;
	end&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
function escape.main(frame)&lt;br /&gt;
	return '&amp;lt;div style=&amp;quot;background-color:black;top:0px;left:0px;position:fixed;height:100%;width:100%;text-align:center;font-size:100px;z-index:999999999&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;'&lt;br /&gt;
end&lt;br /&gt;
return escape&lt;/div&gt;</summary>
		<author><name>27.131.47.131</name></author>
		
	</entry>
</feed>