removed pesky ^M from files, should fix issue 145

This commit is contained in:
capitaomorte 2011-05-07 20:00:55 +00:00
parent 2199257e24
commit 9cdcd3e218
25 changed files with 89 additions and 89 deletions

View File

@ -1,4 +1,4 @@
#contributor : Xah Lee xahlee.org #contributor : Xah Lee xahlee.org
#name : <b>...</b> #name : <b>...</b>
# -- # --
<b>$0</b> <b>$0</b>

View File

@ -1,4 +1,4 @@
#contributor : Jimmy Wu <frozenthrone88@gmail.com> #contributor : Jimmy Wu <frozenthrone88@gmail.com>
#name : <h1>...</h1> #name : <h1>...</h1>
# -- # --
<h1>$1</h1> <h1>$1</h1>

View File

@ -1,4 +1,4 @@
#contributor : Jimmy Wu <frozenthrone88@gmail.com> #contributor : Jimmy Wu <frozenthrone88@gmail.com>
#name : <h2>...</h2> #name : <h2>...</h2>
# -- # --
<h2>$1</h2> <h2>$1</h2>

View File

@ -1,4 +1,4 @@
#contributor : Jimmy Wu <frozenthrone88@gmail.com> #contributor : Jimmy Wu <frozenthrone88@gmail.com>
#name : <h3>...</h3> #name : <h3>...</h3>
# -- # --
<h3>$1</h3> <h3>$1</h3>

View File

@ -1,4 +1,4 @@
#contributor : Jimmy Wu <frozenthrone88@gmail.com> #contributor : Jimmy Wu <frozenthrone88@gmail.com>
#name : <h4>...</h4> #name : <h4>...</h4>
# -- # --
<h4>$1</h4> <h4>$1</h4>

View File

@ -1,4 +1,4 @@
#contributor : Jimmy Wu <frozenthrone88@gmail.com> #contributor : Jimmy Wu <frozenthrone88@gmail.com>
#name : <h5>...</h5> #name : <h5>...</h5>
# -- # --
<h5>$1</h5> <h5>$1</h5>

View File

@ -1,4 +1,4 @@
#contributor : Jimmy Wu <frozenthrone88@gmail.com> #contributor : Jimmy Wu <frozenthrone88@gmail.com>
#name : <h6>...</h6> #name : <h6>...</h6>
# -- # --
<h6>$1</h6> <h6>$1</h6>

View File

@ -1,4 +1,4 @@
#contributor : Xah Lee xahlee.org #contributor : Xah Lee xahlee.org
#name : <i>...</i> #name : <i>...</i>
# -- # --
<i>$0</i> <i>$0</i>

View File

@ -1,4 +1,4 @@
#contributor : Jimmy Wu <frozenthrone88@gmail.com> #contributor : Jimmy Wu <frozenthrone88@gmail.com>
#name : <li>...</li> #name : <li>...</li>
# -- # --
<li>$1</li> <li>$1</li>

View File

@ -1,6 +1,6 @@
#contributor : Jimmy Wu <frozenthrone88@gmail.com> #contributor : Jimmy Wu <frozenthrone88@gmail.com>
#name : <ol>...</ol> #name : <ol>...</ol>
# -- # --
<ol> <ol>
$0 $0
</ol> </ol>

View File

@ -1,6 +1,6 @@
#contributor : Jimmy Wu <frozenthrone88@gmail.com> #contributor : Jimmy Wu <frozenthrone88@gmail.com>
#name : <ol id="...">...</ol> #name : <ol id="...">...</ol>
# -- # --
<ol id="$1"> <ol id="$1">
$0 $0
</ol> </ol>

View File

@ -1,6 +1,6 @@
#contributor : Jimmy Wu <frozenthrone88@gmail.com> #contributor : Jimmy Wu <frozenthrone88@gmail.com>
#name : <ul>...</ul> #name : <ul>...</ul>
# -- # --
<ul> <ul>
$0 $0
</ul> </ul>

View File

@ -1,6 +1,6 @@
#contributor : Jimmy Wu <frozenthrone88@gmail.com> #contributor : Jimmy Wu <frozenthrone88@gmail.com>
#name : <ul id="...">...</ul> #name : <ul id="...">...</ul>
# -- # --
<ul id="$1"> <ul id="$1">
$0 $0
</ul> </ul>

View File

@ -1,4 +1,4 @@
#contributor : Jimmy Wu <frozenthrone88@gmail.com> #contributor : Jimmy Wu <frozenthrone88@gmail.com>
#name : <meta name="..." content="..." /> #name : <meta name="..." content="..." />
# -- # --
<meta name="${1:generator}" content="${2:content}" /> <meta name="${1:generator}" content="${2:content}" />

View File

@ -1,4 +1,4 @@
#contributor : Jimmy Wu <frozenthrone88@gmail.com> #contributor : Jimmy Wu <frozenthrone88@gmail.com>
#name : <meta http-equiv="..." content="..." /> #name : <meta http-equiv="..." content="..." />
# -- # --
<meta http-equiv="${1:Content-Type}" content="${2:text/html; charset=UTF-8}" /> <meta http-equiv="${1:Content-Type}" content="${2:text/html; charset=UTF-8}" />

View File

@ -1,6 +1,6 @@
#contributor : Jimmy Wu <frozenthrone88@gmail.com> #contributor : Jimmy Wu <frozenthrone88@gmail.com>
#name : <table ...>...</table> #name : <table ...>...</table>
# -- # --
<table width="$1" cellspacing="$2" cellpadding="$3" border="$4"> <table width="$1" cellspacing="$2" cellpadding="$3" border="$4">
$0 $0
</table> </table>

View File

@ -1,4 +1,4 @@
#contributor : Jimmy Wu <frozenthrone88@gmail.com> #contributor : Jimmy Wu <frozenthrone88@gmail.com>
#name : <td>...</td> #name : <td>...</td>
# -- # --
<td$1>$2</td> <td$1>$2</td>

View File

@ -1,4 +1,4 @@
#contributor : Jimmy Wu <frozenthrone88@gmail.com> #contributor : Jimmy Wu <frozenthrone88@gmail.com>
#name : <th>...</th> #name : <th>...</th>
# -- # --
<th$1>$2</th> <th$1>$2</th>

View File

@ -1,6 +1,6 @@
#contributor : Jimmy Wu <frozenthrone88@gmail.com> #contributor : Jimmy Wu <frozenthrone88@gmail.com>
#name : <tr>...</tr> #name : <tr>...</tr>
# -- # --
<tr> <tr>
$0 $0
</tr> </tr>

View File

@ -1,4 +1,4 @@
#contributor : Anders Bach Nielsen <abachn@abachn.net> #contributor : Anders Bach Nielsen <abachn@abachn.net>
#name : <h1>...</h1> #name : <h1>...</h1>
# -- # --
<h1>$1</h1> <h1>$1</h1>

View File

@ -1,4 +1,4 @@
#contributor : Anders Bach Nielsen <abachn@abachn.net> #contributor : Anders Bach Nielsen <abachn@abachn.net>
#name : <h2>...</h2> #name : <h2>...</h2>
# -- # --
<h2>$1</h2> <h2>$1</h2>

View File

@ -1,4 +1,4 @@
#contributor : Anders Bach Nielsen <abachn@abachn.net> #contributor : Anders Bach Nielsen <abachn@abachn.net>
#name : <h3>...</h3> #name : <h3>...</h3>
# -- # --
<h3>$1</h3> <h3>$1</h3>

View File

@ -1,4 +1,4 @@
#contributor : Anders Bach Nielsen <abachn@abachn.net> #contributor : Anders Bach Nielsen <abachn@abachn.net>
#name : <h4>...</h4> #name : <h4>...</h4>
# -- # --
<h4>$1</h4> <h4>$1</h4>

View File

@ -1,4 +1,4 @@
#contributor : Anders Bach Nielsen <abachn@abachn.net> #contributor : Anders Bach Nielsen <abachn@abachn.net>
#name : <h5>...</h5> #name : <h5>...</h5>
# -- # --
<h5>$1</h5> <h5>$1</h5>

View File

@ -1,4 +1,4 @@
#contributor : Anders Bach Nielsen <abachn@abachn.net> #contributor : Anders Bach Nielsen <abachn@abachn.net>
#name : <h6>...</h6> #name : <h6>...</h6>
# -- # --
<h6>$1</h6> <h6>$1</h6>