Added mediawiki snippet.

This commit is contained in:
KaoruToda 2013-04-21 23:34:44 +09:00
parent ca1a439f12
commit 97fd6f0d6d
1 changed files with 70 additions and 0 deletions

View File

@ -0,0 +1,70 @@
snippet ==
== ${1} ==
${2}
snippet ===
=== ${1} ===
${2}
snippet ====
==== ${1} ====
${2}
snippet =====
===== ${1} =====
${2}
snippet ======
====== ${1} ======
${2}
snippet [[
[[${1}]] ${2}
snippet ''
''${1}''
snippet '''
'''${1}'''
snippet '''''
'''''${1}'''''
snippet sy
<syntaxhighlight lang="${1}">
${2}
</syntaxhighlight>
snippet pre
<pre>
${1}
</pre>
snippet html
<html>
${1}
</html>
snippet nowiki
<nowiki>${1}</nowiki>
snippet tt
<tt>${1}</tt>
snippet blockquote
<blockquote>${1}</blockquote>
snippet ft
<!--
vim: filetype=mediawiki
-->
snippet {|
{|class="wikitable"
|+ ${1}
! ${2}
! ${3}
|-
| ${4}
| ${5}
|-
| ${6}
| ${7}
|-
|
|
|}