diff options
Diffstat (limited to '.emacs.d/mysnippets/text-mode/html-mode')
60 files changed, 0 insertions, 320 deletions
diff --git a/.emacs.d/mysnippets/text-mode/html-mode/body b/.emacs.d/mysnippets/text-mode/html-mode/body deleted file mode 100644 index c924f8c..0000000 --- a/.emacs.d/mysnippets/text-mode/html-mode/body +++ /dev/null | |||
| @@ -1,6 +0,0 @@ | |||
| 1 | #contributor : Jimmy Wu <frozenthrone88@gmail.com> | ||
| 2 | #name : <body>...</body> | ||
| 3 | # -- | ||
| 4 | <body$1> | ||
| 5 | $0 | ||
| 6 | </body> \ No newline at end of file | ||
diff --git a/.emacs.d/mysnippets/text-mode/html-mode/br b/.emacs.d/mysnippets/text-mode/html-mode/br deleted file mode 100644 index 3492098..0000000 --- a/.emacs.d/mysnippets/text-mode/html-mode/br +++ /dev/null | |||
| @@ -1,4 +0,0 @@ | |||
| 1 | #contributor : Jimmy Wu <frozenthrone88@gmail.com> | ||
| 2 | #name : <br /> | ||
| 3 | # -- | ||
| 4 | <br /> \ No newline at end of file | ||
diff --git a/.emacs.d/mysnippets/text-mode/html-mode/code b/.emacs.d/mysnippets/text-mode/html-mode/code deleted file mode 100644 index 6f558ec..0000000 --- a/.emacs.d/mysnippets/text-mode/html-mode/code +++ /dev/null | |||
| @@ -1,6 +0,0 @@ | |||
| 1 | #contributor : Jimmy Wu <frozenthrone88@gmail.com> | ||
| 2 | #name : <code>...</code> | ||
| 3 | # -- | ||
| 4 | <code> | ||
| 5 | $0 | ||
| 6 | </code> \ No newline at end of file | ||
diff --git a/.emacs.d/mysnippets/text-mode/html-mode/code.class b/.emacs.d/mysnippets/text-mode/html-mode/code.class deleted file mode 100644 index b910eb7..0000000 --- a/.emacs.d/mysnippets/text-mode/html-mode/code.class +++ /dev/null | |||
| @@ -1,6 +0,0 @@ | |||
| 1 | #contributor : Jimmy Wu <frozenthrone88@gmail.com> | ||
| 2 | #name : <code class="...">...</code> | ||
| 3 | # -- | ||
| 4 | <code class="$1"> | ||
| 5 | $0 | ||
| 6 | </code> \ No newline at end of file | ||
diff --git a/.emacs.d/mysnippets/text-mode/html-mode/dd b/.emacs.d/mysnippets/text-mode/html-mode/dd deleted file mode 100644 index 8120b13..0000000 --- a/.emacs.d/mysnippets/text-mode/html-mode/dd +++ /dev/null | |||
| @@ -1,5 +0,0 @@ | |||
| 1 | #contributor : Rodrigo Setti <rodrigosetti@gmail.com> | ||
| 2 | #name : <dd> ... </dd> | ||
| 3 | #group : list | ||
| 4 | # -- | ||
| 5 | <dd>$1</dd> \ No newline at end of file | ||
diff --git a/.emacs.d/mysnippets/text-mode/html-mode/div b/.emacs.d/mysnippets/text-mode/html-mode/div deleted file mode 100644 index 1c9c0c8..0000000 --- a/.emacs.d/mysnippets/text-mode/html-mode/div +++ /dev/null | |||
| @@ -1,3 +0,0 @@ | |||
| 1 | #name : <div...>...</div> | ||
| 2 | # -- | ||
| 3 | <div${1: id="${2:some_id}"}${3: class="${4:some_class}"}>$0</div> \ No newline at end of file | ||
diff --git a/.emacs.d/mysnippets/text-mode/html-mode/div.class b/.emacs.d/mysnippets/text-mode/html-mode/div.class deleted file mode 100644 index 11c12d6..0000000 --- a/.emacs.d/mysnippets/text-mode/html-mode/div.class +++ /dev/null | |||
| @@ -1,6 +0,0 @@ | |||
| 1 | #contributor : Jimmy Wu <frozenthrone88@gmail.com> | ||
| 2 | #name : <div class="...">...</div> | ||
| 3 | # -- | ||
| 4 | <div class="$1"> | ||
| 5 | $0 | ||
| 6 | </div> \ No newline at end of file | ||
diff --git a/.emacs.d/mysnippets/text-mode/html-mode/div.id b/.emacs.d/mysnippets/text-mode/html-mode/div.id deleted file mode 100644 index ccde64d..0000000 --- a/.emacs.d/mysnippets/text-mode/html-mode/div.id +++ /dev/null | |||
| @@ -1,6 +0,0 @@ | |||
| 1 | #contributor : Jimmy Wu <frozenthrone88@gmail.com> | ||
| 2 | #name : <div id="...">...</div> | ||
| 3 | # -- | ||
| 4 | <div id="$1"> | ||
| 5 | $0 | ||
| 6 | </div> \ No newline at end of file | ||
diff --git a/.emacs.d/mysnippets/text-mode/html-mode/div.id-class b/.emacs.d/mysnippets/text-mode/html-mode/div.id-class deleted file mode 100644 index bce8920..0000000 --- a/.emacs.d/mysnippets/text-mode/html-mode/div.id-class +++ /dev/null | |||
| @@ -1,6 +0,0 @@ | |||
| 1 | #contributor : Jimmy Wu <frozenthrone88@gmail.com> | ||
| 2 | #name : <div id="..." class="...">...</div> | ||
| 3 | # -- | ||
| 4 | <div id="$1" class="$2"> | ||
| 5 | $0 | ||
| 6 | </div> \ No newline at end of file | ||
diff --git a/.emacs.d/mysnippets/text-mode/html-mode/dl b/.emacs.d/mysnippets/text-mode/html-mode/dl deleted file mode 100644 index be11bb5..0000000 --- a/.emacs.d/mysnippets/text-mode/html-mode/dl +++ /dev/null | |||
| @@ -1,7 +0,0 @@ | |||
| 1 | #contributor : Rodrigo Setti <rodrigosetti@gmail.com> | ||
| 2 | #name : <dl> ... </dl> | ||
| 3 | #group : list | ||
| 4 | # -- | ||
| 5 | <dl> | ||
| 6 | $0 | ||
| 7 | </dl> | ||
diff --git a/.emacs.d/mysnippets/text-mode/html-mode/dl.id b/.emacs.d/mysnippets/text-mode/html-mode/dl.id deleted file mode 100644 index 16aba53..0000000 --- a/.emacs.d/mysnippets/text-mode/html-mode/dl.id +++ /dev/null | |||
| @@ -1,7 +0,0 @@ | |||
| 1 | #contributor : Rodrigo Setti <rodrigosetti@gmail.com> | ||
| 2 | #name : <dl> ... </dl> | ||
| 3 | #group : list | ||
| 4 | # -- | ||
| 5 | <dl id="$1"> | ||
| 6 | $0 | ||
| 7 | </dl> \ No newline at end of file | ||
diff --git a/.emacs.d/mysnippets/text-mode/html-mode/doctype b/.emacs.d/mysnippets/text-mode/html-mode/doctype deleted file mode 100644 index a60dfb6..0000000 --- a/.emacs.d/mysnippets/text-mode/html-mode/doctype +++ /dev/null | |||
| @@ -1,4 +0,0 @@ | |||
| 1 | #name : Doctype HTML 4.01 Strict | ||
| 2 | #group : meta | ||
| 3 | # -- | ||
| 4 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> \ No newline at end of file | ||
diff --git a/.emacs.d/mysnippets/text-mode/html-mode/doctype.xhml1 b/.emacs.d/mysnippets/text-mode/html-mode/doctype.xhml1 deleted file mode 100644 index 5d95e07..0000000 --- a/.emacs.d/mysnippets/text-mode/html-mode/doctype.xhml1 +++ /dev/null | |||
| @@ -1,4 +0,0 @@ | |||
| 1 | #name : DocType XHTML 1.0 frameset | ||
| 2 | #group : meta | ||
| 3 | # -- | ||
| 4 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd"> \ No newline at end of file | ||
diff --git a/.emacs.d/mysnippets/text-mode/html-mode/doctype.xhtml1_1 b/.emacs.d/mysnippets/text-mode/html-mode/doctype.xhtml1_1 deleted file mode 100644 index fec46d7..0000000 --- a/.emacs.d/mysnippets/text-mode/html-mode/doctype.xhtml1_1 +++ /dev/null | |||
| @@ -1,4 +0,0 @@ | |||
| 1 | #name : DocType XHTML 1.1 | ||
| 2 | #group : meta | ||
| 3 | # -- | ||
| 4 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> \ No newline at end of file | ||
diff --git a/.emacs.d/mysnippets/text-mode/html-mode/doctype.xhtml1_strict b/.emacs.d/mysnippets/text-mode/html-mode/doctype.xhtml1_strict deleted file mode 100644 index 20d95d3..0000000 --- a/.emacs.d/mysnippets/text-mode/html-mode/doctype.xhtml1_strict +++ /dev/null | |||
| @@ -1,4 +0,0 @@ | |||
| 1 | #name : DocType XHTML 1.0 Strict | ||
| 2 | #group : meta | ||
| 3 | # -- | ||
| 4 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> \ No newline at end of file | ||
diff --git a/.emacs.d/mysnippets/text-mode/html-mode/doctype.xhtml1_transitional b/.emacs.d/mysnippets/text-mode/html-mode/doctype.xhtml1_transitional deleted file mode 100644 index c5255fc..0000000 --- a/.emacs.d/mysnippets/text-mode/html-mode/doctype.xhtml1_transitional +++ /dev/null | |||
| @@ -1,4 +0,0 @@ | |||
| 1 | #name : DocType XHTML 1.0 Transitional | ||
| 2 | #group : meta | ||
| 3 | # -- | ||
| 4 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> \ No newline at end of file | ||
diff --git a/.emacs.d/mysnippets/text-mode/html-mode/dov b/.emacs.d/mysnippets/text-mode/html-mode/dov deleted file mode 100644 index e8341ea..0000000 --- a/.emacs.d/mysnippets/text-mode/html-mode/dov +++ /dev/null | |||
| @@ -1,11 +0,0 @@ | |||
| 1 | #name : <dov...>...</dov> | ||
| 2 | # -- | ||
| 3 | a mirror up here $3 | ||
| 4 | |||
| 5 | |||
| 6 | <dov ${1:id="${2:some_id and here comes another nested field: ${3:nested_shit}}"}> | ||
| 7 | $0 | ||
| 8 | </dov> | ||
| 9 | <dov $1> | ||
| 10 | actually some other shit and $3 | ||
| 11 | </dov> | ||
diff --git a/.emacs.d/mysnippets/text-mode/html-mode/dt b/.emacs.d/mysnippets/text-mode/html-mode/dt deleted file mode 100644 index f385cec..0000000 --- a/.emacs.d/mysnippets/text-mode/html-mode/dt +++ /dev/null | |||
| @@ -1,5 +0,0 @@ | |||
| 1 | #contributor : Rodrigo Setti <rodrigosetti@gmail.com> | ||
| 2 | #name : <dt> ... </dt> | ||
| 3 | #group : list | ||
| 4 | # -- | ||
| 5 | <dt>$1</dt> \ No newline at end of file | ||
diff --git a/.emacs.d/mysnippets/text-mode/html-mode/form b/.emacs.d/mysnippets/text-mode/html-mode/form deleted file mode 100644 index f1c066d..0000000 --- a/.emacs.d/mysnippets/text-mode/html-mode/form +++ /dev/null | |||
| @@ -1,6 +0,0 @@ | |||
| 1 | #contributor : Jimmy Wu <frozenthrone88@gmail.com> | ||
| 2 | #name :<form method="..." id="..." action="..."></form> | ||
| 3 | # -- | ||
| 4 | <form method="$1" id="$2" action="$3"> | ||
| 5 | $0 | ||
| 6 | </form> \ No newline at end of file | ||
diff --git a/.emacs.d/mysnippets/text-mode/html-mode/h1 b/.emacs.d/mysnippets/text-mode/html-mode/h1 deleted file mode 100644 index 414e457..0000000 --- a/.emacs.d/mysnippets/text-mode/html-mode/h1 +++ /dev/null | |||
| @@ -1,5 +0,0 @@ | |||
| 1 | #contributor : Jimmy Wu <frozenthrone88@gmail.com> | ||
| 2 | #name : <h1>...</h1> | ||
| 3 | #group : header | ||
| 4 | # -- | ||
| 5 | <h1>$1</h1> \ No newline at end of file | ||
diff --git a/.emacs.d/mysnippets/text-mode/html-mode/h2 b/.emacs.d/mysnippets/text-mode/html-mode/h2 deleted file mode 100644 index 3722a29..0000000 --- a/.emacs.d/mysnippets/text-mode/html-mode/h2 +++ /dev/null | |||
| @@ -1,5 +0,0 @@ | |||
| 1 | #contributor : Jimmy Wu <frozenthrone88@gmail.com> | ||
| 2 | #name : <h2>...</h2> | ||
| 3 | #group : header | ||
| 4 | # -- | ||
| 5 | <h2>$1</h2> \ No newline at end of file | ||
diff --git a/.emacs.d/mysnippets/text-mode/html-mode/h3 b/.emacs.d/mysnippets/text-mode/html-mode/h3 deleted file mode 100644 index a1eaab1..0000000 --- a/.emacs.d/mysnippets/text-mode/html-mode/h3 +++ /dev/null | |||
| @@ -1,5 +0,0 @@ | |||
| 1 | #contributor : Jimmy Wu <frozenthrone88@gmail.com> | ||
| 2 | #name : <h3>...</h3> | ||
| 3 | #group : header | ||
| 4 | # -- | ||
| 5 | <h3>$1</h3> \ No newline at end of file | ||
diff --git a/.emacs.d/mysnippets/text-mode/html-mode/h4 b/.emacs.d/mysnippets/text-mode/html-mode/h4 deleted file mode 100644 index df71628..0000000 --- a/.emacs.d/mysnippets/text-mode/html-mode/h4 +++ /dev/null | |||
| @@ -1,5 +0,0 @@ | |||
| 1 | #contributor : Jimmy Wu <frozenthrone88@gmail.com> | ||
| 2 | #name : <h4>...</h4> | ||
| 3 | #group : header | ||
| 4 | # -- | ||
| 5 | <h4>$1</h4> \ No newline at end of file | ||
diff --git a/.emacs.d/mysnippets/text-mode/html-mode/h5 b/.emacs.d/mysnippets/text-mode/html-mode/h5 deleted file mode 100644 index 0109822..0000000 --- a/.emacs.d/mysnippets/text-mode/html-mode/h5 +++ /dev/null | |||
| @@ -1,5 +0,0 @@ | |||
| 1 | #contributor : Jimmy Wu <frozenthrone88@gmail.com> | ||
| 2 | #name : <h5>...</h5> | ||
| 3 | #group : header | ||
| 4 | # -- | ||
| 5 | <h5>$1</h5> \ No newline at end of file | ||
diff --git a/.emacs.d/mysnippets/text-mode/html-mode/h6 b/.emacs.d/mysnippets/text-mode/html-mode/h6 deleted file mode 100644 index 21c718f..0000000 --- a/.emacs.d/mysnippets/text-mode/html-mode/h6 +++ /dev/null | |||
| @@ -1,5 +0,0 @@ | |||
| 1 | #contributor : Jimmy Wu <frozenthrone88@gmail.com> | ||
| 2 | #name : <h6>...</h6> | ||
| 3 | #group : header | ||
| 4 | # -- | ||
| 5 | <h6>$1</h6> \ No newline at end of file | ||
diff --git a/.emacs.d/mysnippets/text-mode/html-mode/head b/.emacs.d/mysnippets/text-mode/html-mode/head deleted file mode 100644 index d639a73..0000000 --- a/.emacs.d/mysnippets/text-mode/html-mode/head +++ /dev/null | |||
| @@ -1,6 +0,0 @@ | |||
| 1 | #contributor : Jimmy Wu <frozenthrone88@gmail.com> | ||
| 2 | #name : <head>...</head> | ||
| 3 | # -- | ||
| 4 | <head> | ||
| 5 | $0 | ||
| 6 | </head> \ No newline at end of file | ||
diff --git a/.emacs.d/mysnippets/text-mode/html-mode/hr b/.emacs.d/mysnippets/text-mode/html-mode/hr deleted file mode 100644 index c2c330c..0000000 --- a/.emacs.d/mysnippets/text-mode/html-mode/hr +++ /dev/null | |||
| @@ -1,4 +0,0 @@ | |||
| 1 | #contributor : Jimmy Wu <frozenthrone88@gmail.com> | ||
| 2 | #name : <hr /> | ||
| 3 | # -- | ||
| 4 | <hr /> | ||
diff --git a/.emacs.d/mysnippets/text-mode/html-mode/href b/.emacs.d/mysnippets/text-mode/html-mode/href deleted file mode 100644 index 121d589..0000000 --- a/.emacs.d/mysnippets/text-mode/html-mode/href +++ /dev/null | |||
| @@ -1,4 +0,0 @@ | |||
| 1 | #contributor : Jimmy Wu <frozenthrone88@gmail.com> | ||
| 2 | #name : <a href="...">...</a> | ||
| 3 | # -- | ||
| 4 | <a href="$1">$2</a> \ No newline at end of file | ||
diff --git a/.emacs.d/mysnippets/text-mode/html-mode/html b/.emacs.d/mysnippets/text-mode/html-mode/html deleted file mode 100644 index 958aa6d..0000000 --- a/.emacs.d/mysnippets/text-mode/html-mode/html +++ /dev/null | |||
| @@ -1,6 +0,0 @@ | |||
| 1 | #contributor : Jimmy Wu <frozenthrone88@gmail.com> | ||
| 2 | #name : <html>...</html> | ||
| 3 | # -- | ||
| 4 | <html> | ||
| 5 | $0 | ||
| 6 | </html> | ||
diff --git a/.emacs.d/mysnippets/text-mode/html-mode/html.xmlns b/.emacs.d/mysnippets/text-mode/html-mode/html.xmlns deleted file mode 100644 index 7dd7ee4..0000000 --- a/.emacs.d/mysnippets/text-mode/html-mode/html.xmlns +++ /dev/null | |||
| @@ -1,6 +0,0 @@ | |||
| 1 | #contributor : Jimmy Wu <frozenthrone88@gmail.com> | ||
| 2 | #name : <html xmlns="...">...</html> | ||
| 3 | # -- | ||
| 4 | <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="${1:en}" lang="${2:en}"> | ||
| 5 | $0 | ||
| 6 | </html> | ||
diff --git a/.emacs.d/mysnippets/text-mode/html-mode/img b/.emacs.d/mysnippets/text-mode/html-mode/img deleted file mode 100644 index 897f605..0000000 --- a/.emacs.d/mysnippets/text-mode/html-mode/img +++ /dev/null | |||
| @@ -1,4 +0,0 @@ | |||
| 1 | #contributor : Jimmy Wu <frozenthrone88@gmail.com> | ||
| 2 | #name : <img src="..." class="..." alt="..." /> | ||
| 3 | # -- | ||
| 4 | <img src="$1" class="$2" alt="$3" /> \ No newline at end of file | ||
diff --git a/.emacs.d/mysnippets/text-mode/html-mode/input b/.emacs.d/mysnippets/text-mode/html-mode/input deleted file mode 100644 index c79ba87..0000000 --- a/.emacs.d/mysnippets/text-mode/html-mode/input +++ /dev/null | |||
| @@ -1,4 +0,0 @@ | |||
| 1 | #contributor : Jimmy Wu <frozenthrone88@gmail.com> | ||
| 2 | #name : <input ... /> | ||
| 3 | # -- | ||
| 4 | <input type="$1" name="$2" value="$3" /> \ No newline at end of file | ||
diff --git a/.emacs.d/mysnippets/text-mode/html-mode/li b/.emacs.d/mysnippets/text-mode/html-mode/li deleted file mode 100644 index c5139fa..0000000 --- a/.emacs.d/mysnippets/text-mode/html-mode/li +++ /dev/null | |||
| @@ -1,5 +0,0 @@ | |||
| 1 | #contributor : Jimmy Wu <frozenthrone88@gmail.com> | ||
| 2 | #name : <li>...</li> | ||
| 3 | #group : list | ||
| 4 | # -- | ||
| 5 | <li>$1</li> \ No newline at end of file | ||
diff --git a/.emacs.d/mysnippets/text-mode/html-mode/li.class b/.emacs.d/mysnippets/text-mode/html-mode/li.class deleted file mode 100644 index 90f0c65..0000000 --- a/.emacs.d/mysnippets/text-mode/html-mode/li.class +++ /dev/null | |||
| @@ -1,5 +0,0 @@ | |||
| 1 | #contributor : Jimmy Wu <frozenthrone88@gmail.com> | ||
| 2 | #name : <li class="...">...</li> | ||
| 3 | #group : list | ||
| 4 | # -- | ||
| 5 | <li class="$1">$2</li> \ No newline at end of file | ||
diff --git a/.emacs.d/mysnippets/text-mode/html-mode/link.stylesheet b/.emacs.d/mysnippets/text-mode/html-mode/link.stylesheet deleted file mode 100644 index 6c9de74..0000000 --- a/.emacs.d/mysnippets/text-mode/html-mode/link.stylesheet +++ /dev/null | |||
| @@ -1,4 +0,0 @@ | |||
| 1 | #contributor : Jimmy Wu <frozenthrone88@gmail.com> | ||
| 2 | #name : <link stylesheet="..." /> | ||
| 3 | # -- | ||
| 4 | <link rel="${1:stylesheet}" href="${2:url}" type="${3:text/css}" media="${4:screen}" /> \ No newline at end of file | ||
diff --git a/.emacs.d/mysnippets/text-mode/html-mode/link.stylesheet-ie b/.emacs.d/mysnippets/text-mode/html-mode/link.stylesheet-ie deleted file mode 100644 index 4f6a776..0000000 --- a/.emacs.d/mysnippets/text-mode/html-mode/link.stylesheet-ie +++ /dev/null | |||
| @@ -1,6 +0,0 @@ | |||
| 1 | #contributor : Jimmy Wu <frozenthrone88@gmail.com> | ||
| 2 | #name : <!--[if IE]><link stylesheet="..." /><![endif]--> | ||
| 3 | # -- | ||
| 4 | <!--[if IE]> | ||
| 5 | <link rel="${1:stylesheet}" href="${2:url}" type="${3:text/css}" media="${4:screen}" /> | ||
| 6 | <![endif]--> \ No newline at end of file | ||
diff --git a/.emacs.d/mysnippets/text-mode/html-mode/mailto b/.emacs.d/mysnippets/text-mode/html-mode/mailto deleted file mode 100644 index 419f2a5..0000000 --- a/.emacs.d/mysnippets/text-mode/html-mode/mailto +++ /dev/null | |||
| @@ -1,4 +0,0 @@ | |||
| 1 | #contributor : Jimmy Wu <frozenthrone88@gmail.com> | ||
| 2 | #name : <a href="mailto:...@...">...</a> | ||
| 3 | # -- | ||
| 4 | <a href="mailto:$1@$2">$0</a> \ No newline at end of file | ||
diff --git a/.emacs.d/mysnippets/text-mode/html-mode/meta b/.emacs.d/mysnippets/text-mode/html-mode/meta deleted file mode 100644 index 30319ef..0000000 --- a/.emacs.d/mysnippets/text-mode/html-mode/meta +++ /dev/null | |||
| @@ -1,5 +0,0 @@ | |||
| 1 | #contributor : Jimmy Wu <frozenthrone88@gmail.com> | ||
| 2 | #group : meta | ||
| 3 | #name : <meta name="..." content="..." /> | ||
| 4 | # -- | ||
| 5 | <meta name="${1:generator}" content="${2:content}" /> \ No newline at end of file | ||
diff --git a/.emacs.d/mysnippets/text-mode/html-mode/meta.http-equiv b/.emacs.d/mysnippets/text-mode/html-mode/meta.http-equiv deleted file mode 100644 index c059a44..0000000 --- a/.emacs.d/mysnippets/text-mode/html-mode/meta.http-equiv +++ /dev/null | |||
| @@ -1,5 +0,0 @@ | |||
| 1 | #contributor : Jimmy Wu <frozenthrone88@gmail.com> | ||
| 2 | #name : <meta http-equiv="..." content="..." /> | ||
| 3 | #group : meta | ||
| 4 | # -- | ||
| 5 | <meta name="${1:Content-Type}" content="${2:text/html; charset=UTF-8}" /> \ No newline at end of file | ||
diff --git a/.emacs.d/mysnippets/text-mode/html-mode/ol b/.emacs.d/mysnippets/text-mode/html-mode/ol deleted file mode 100644 index 58899fa..0000000 --- a/.emacs.d/mysnippets/text-mode/html-mode/ol +++ /dev/null | |||
| @@ -1,7 +0,0 @@ | |||
| 1 | #contributor : Jimmy Wu <frozenthrone88@gmail.com> | ||
| 2 | #name : <ol>...</ol> | ||
| 3 | #group : list | ||
| 4 | # -- | ||
| 5 | <ol> | ||
| 6 | $0 | ||
| 7 | </ol> \ No newline at end of file | ||
diff --git a/.emacs.d/mysnippets/text-mode/html-mode/ol.class b/.emacs.d/mysnippets/text-mode/html-mode/ol.class deleted file mode 100644 index b091f08..0000000 --- a/.emacs.d/mysnippets/text-mode/html-mode/ol.class +++ /dev/null | |||
| @@ -1,7 +0,0 @@ | |||
| 1 | #contributor : Jimmy Wu <frozenthrone88@gmail.com> | ||
| 2 | #name : <ol class="...">...</ol> | ||
| 3 | #group : list | ||
| 4 | # -- | ||
| 5 | <ol class="$1"> | ||
| 6 | $0 | ||
| 7 | </ol> \ No newline at end of file | ||
diff --git a/.emacs.d/mysnippets/text-mode/html-mode/ol.id b/.emacs.d/mysnippets/text-mode/html-mode/ol.id deleted file mode 100644 index 13c7c06..0000000 --- a/.emacs.d/mysnippets/text-mode/html-mode/ol.id +++ /dev/null | |||
| @@ -1,7 +0,0 @@ | |||
| 1 | #contributor : Jimmy Wu <frozenthrone88@gmail.com> | ||
| 2 | #name : <ol id="...">...</ol> | ||
| 3 | #group : list | ||
| 4 | # -- | ||
| 5 | <ol id="$1"> | ||
| 6 | $0 | ||
| 7 | </ol> \ No newline at end of file | ||
diff --git a/.emacs.d/mysnippets/text-mode/html-mode/p b/.emacs.d/mysnippets/text-mode/html-mode/p deleted file mode 100644 index 649d9a2..0000000 --- a/.emacs.d/mysnippets/text-mode/html-mode/p +++ /dev/null | |||
| @@ -1,4 +0,0 @@ | |||
| 1 | #contributor : Jimmy Wu <frozenthrone88@gmail.com> | ||
| 2 | #name : <p>...</p> | ||
| 3 | # -- | ||
| 4 | <p>$1</p> \ No newline at end of file | ||
diff --git a/.emacs.d/mysnippets/text-mode/html-mode/pre b/.emacs.d/mysnippets/text-mode/html-mode/pre deleted file mode 100644 index bfebb3c..0000000 --- a/.emacs.d/mysnippets/text-mode/html-mode/pre +++ /dev/null | |||
| @@ -1,6 +0,0 @@ | |||
| 1 | #contributor : Jimmy Wu <frozenthrone88@gmail.com> | ||
| 2 | #name : <pre>...</pre> | ||
| 3 | # -- | ||
| 4 | <pre> | ||
| 5 | $0 | ||
| 6 | </pre> \ No newline at end of file | ||
diff --git a/.emacs.d/mysnippets/text-mode/html-mode/quote b/.emacs.d/mysnippets/text-mode/html-mode/quote deleted file mode 100644 index 65ded74..0000000 --- a/.emacs.d/mysnippets/text-mode/html-mode/quote +++ /dev/null | |||
| @@ -1,6 +0,0 @@ | |||
| 1 | #contributor : Jimmy Wu <frozenthrone88@gmail.com> | ||
| 2 | #name : <blockquote>...</blockquote> | ||
| 3 | # -- | ||
| 4 | <blockquote> | ||
| 5 | $1 | ||
| 6 | </blockquote> \ No newline at end of file | ||
diff --git a/.emacs.d/mysnippets/text-mode/html-mode/script.javascript b/.emacs.d/mysnippets/text-mode/html-mode/script.javascript deleted file mode 100644 index bf0c3b5..0000000 --- a/.emacs.d/mysnippets/text-mode/html-mode/script.javascript +++ /dev/null | |||
| @@ -1,6 +0,0 @@ | |||
| 1 | #contributor : Jimmy Wu <frozenthrone88@gmail.com> | ||
| 2 | #name :<script type="text/javascript">...</script> | ||
| 3 | # -- | ||
| 4 | <script type="text/javascript"> | ||
| 5 | $0 | ||
| 6 | </script> \ No newline at end of file | ||
diff --git a/.emacs.d/mysnippets/text-mode/html-mode/script.javascript-src b/.emacs.d/mysnippets/text-mode/html-mode/script.javascript-src deleted file mode 100644 index b64c4dc..0000000 --- a/.emacs.d/mysnippets/text-mode/html-mode/script.javascript-src +++ /dev/null | |||
| @@ -1,4 +0,0 @@ | |||
| 1 | #contributor : Jimmy Wu <frozenthrone88@gmail.com> | ||
| 2 | #name :<script type="text/javascript" src="..."></script> | ||
| 3 | # -- | ||
| 4 | <script type="text/javascript" src="$1"></script> \ No newline at end of file | ||
diff --git a/.emacs.d/mysnippets/text-mode/html-mode/span b/.emacs.d/mysnippets/text-mode/html-mode/span deleted file mode 100644 index 149758d..0000000 --- a/.emacs.d/mysnippets/text-mode/html-mode/span +++ /dev/null | |||
| @@ -1,4 +0,0 @@ | |||
| 1 | #contributor : Jimmy Wu <frozenthrone88@gmail.com> | ||
| 2 | #name : <span>...</span> | ||
| 3 | # -- | ||
| 4 | <span>$1</span> \ No newline at end of file | ||
diff --git a/.emacs.d/mysnippets/text-mode/html-mode/span.class b/.emacs.d/mysnippets/text-mode/html-mode/span.class deleted file mode 100644 index 2d5ee55..0000000 --- a/.emacs.d/mysnippets/text-mode/html-mode/span.class +++ /dev/null | |||
| @@ -1,4 +0,0 @@ | |||
| 1 | #contributor : Jimmy Wu <frozenthrone88@gmail.com> | ||
| 2 | #name : <span class="...">...</span> | ||
| 3 | # -- | ||
| 4 | <span class="$1">$2</span> \ No newline at end of file | ||
diff --git a/.emacs.d/mysnippets/text-mode/html-mode/span.id b/.emacs.d/mysnippets/text-mode/html-mode/span.id deleted file mode 100644 index 30a81bc..0000000 --- a/.emacs.d/mysnippets/text-mode/html-mode/span.id +++ /dev/null | |||
| @@ -1,4 +0,0 @@ | |||
| 1 | #contributor : Jimmy Wu <frozenthrone88@gmail.com> | ||
| 2 | #name : <span id="...">...</span> | ||
| 3 | # -- | ||
| 4 | <span id="$1">$2</span> \ No newline at end of file | ||
diff --git a/.emacs.d/mysnippets/text-mode/html-mode/style b/.emacs.d/mysnippets/text-mode/html-mode/style deleted file mode 100644 index 300bead..0000000 --- a/.emacs.d/mysnippets/text-mode/html-mode/style +++ /dev/null | |||
| @@ -1,6 +0,0 @@ | |||
| 1 | #contributor : Jimmy Wu <frozenthrone88@gmail.com> | ||
| 2 | #name : <style type="text/css" media="...">...</style> | ||
| 3 | # -- | ||
| 4 | <style type="text/css" media="${1:screen}"> | ||
| 5 | $0 | ||
| 6 | </style> \ No newline at end of file | ||
diff --git a/.emacs.d/mysnippets/text-mode/html-mode/table b/.emacs.d/mysnippets/text-mode/html-mode/table deleted file mode 100644 index 561614f..0000000 --- a/.emacs.d/mysnippets/text-mode/html-mode/table +++ /dev/null | |||
| @@ -1,7 +0,0 @@ | |||
| 1 | #contributor : Jimmy Wu <frozenthrone88@gmail.com> | ||
| 2 | #name : <table ...>...</table> | ||
| 3 | #group : table | ||
| 4 | # -- | ||
| 5 | <table width="$1" cellspacing="$2" cellpadding="$3" border="$4"> | ||
| 6 | $0 | ||
| 7 | </table> \ No newline at end of file | ||
diff --git a/.emacs.d/mysnippets/text-mode/html-mode/td b/.emacs.d/mysnippets/text-mode/html-mode/td deleted file mode 100644 index 4f494eb..0000000 --- a/.emacs.d/mysnippets/text-mode/html-mode/td +++ /dev/null | |||
| @@ -1,5 +0,0 @@ | |||
| 1 | #contributor : Jimmy Wu <frozenthrone88@gmail.com> | ||
| 2 | #name : <td>...</td> | ||
| 3 | #group : table | ||
| 4 | # -- | ||
| 5 | <td$1>$2</td> \ No newline at end of file | ||
diff --git a/.emacs.d/mysnippets/text-mode/html-mode/textarea b/.emacs.d/mysnippets/text-mode/html-mode/textarea deleted file mode 100644 index 058498f..0000000 --- a/.emacs.d/mysnippets/text-mode/html-mode/textarea +++ /dev/null | |||
| @@ -1,4 +0,0 @@ | |||
| 1 | #contributor : Jimmy Wu <frozenthrone88@gmail.com> | ||
| 2 | #name : <textarea ...></textarea> | ||
| 3 | # -- | ||
| 4 | <textarea name="$1" id="$2" rows="$3" cols="$4" tabindex="$5"></textarea> \ No newline at end of file | ||
diff --git a/.emacs.d/mysnippets/text-mode/html-mode/th b/.emacs.d/mysnippets/text-mode/html-mode/th deleted file mode 100644 index 3b5fab1..0000000 --- a/.emacs.d/mysnippets/text-mode/html-mode/th +++ /dev/null | |||
| @@ -1,5 +0,0 @@ | |||
| 1 | #contributor : Jimmy Wu <frozenthrone88@gmail.com> | ||
| 2 | #name : <th>...</th> | ||
| 3 | #group : table | ||
| 4 | # -- | ||
| 5 | <th$1>$2</th> \ No newline at end of file | ||
diff --git a/.emacs.d/mysnippets/text-mode/html-mode/title b/.emacs.d/mysnippets/text-mode/html-mode/title deleted file mode 100644 index 21794cd..0000000 --- a/.emacs.d/mysnippets/text-mode/html-mode/title +++ /dev/null | |||
| @@ -1,4 +0,0 @@ | |||
| 1 | #contributor : Jimmy Wu <frozenthrone88@gmail.com> | ||
| 2 | #name : <title>...</title> | ||
| 3 | # -- | ||
| 4 | <title>$1</title> \ No newline at end of file | ||
diff --git a/.emacs.d/mysnippets/text-mode/html-mode/tr b/.emacs.d/mysnippets/text-mode/html-mode/tr deleted file mode 100644 index 3878a1c..0000000 --- a/.emacs.d/mysnippets/text-mode/html-mode/tr +++ /dev/null | |||
| @@ -1,7 +0,0 @@ | |||
| 1 | #contributor : Jimmy Wu <frozenthrone88@gmail.com> | ||
| 2 | #name : <tr>...</tr> | ||
| 3 | #group : table | ||
| 4 | # -- | ||
| 5 | <tr> | ||
| 6 | $0 | ||
| 7 | </tr> \ No newline at end of file | ||
diff --git a/.emacs.d/mysnippets/text-mode/html-mode/ul b/.emacs.d/mysnippets/text-mode/html-mode/ul deleted file mode 100644 index 981e6e7..0000000 --- a/.emacs.d/mysnippets/text-mode/html-mode/ul +++ /dev/null | |||
| @@ -1,7 +0,0 @@ | |||
| 1 | #contributor : Jimmy Wu <frozenthrone88@gmail.com> | ||
| 2 | #name : <ul>...</ul> | ||
| 3 | #group : list | ||
| 4 | # -- | ||
| 5 | <ul> | ||
| 6 | $0 | ||
| 7 | </ul> \ No newline at end of file | ||
diff --git a/.emacs.d/mysnippets/text-mode/html-mode/ul.class b/.emacs.d/mysnippets/text-mode/html-mode/ul.class deleted file mode 100644 index c1e3e91..0000000 --- a/.emacs.d/mysnippets/text-mode/html-mode/ul.class +++ /dev/null | |||
| @@ -1,7 +0,0 @@ | |||
| 1 | #contributor : Jimmy Wu <frozenthrone88@gmail.com> | ||
| 2 | #name : <ul class="...">...</ul> | ||
| 3 | #group : list | ||
| 4 | # -- | ||
| 5 | <ul class="$1"> | ||
| 6 | $0 | ||
| 7 | </ul> \ No newline at end of file | ||
diff --git a/.emacs.d/mysnippets/text-mode/html-mode/ul.id b/.emacs.d/mysnippets/text-mode/html-mode/ul.id deleted file mode 100644 index ababf37..0000000 --- a/.emacs.d/mysnippets/text-mode/html-mode/ul.id +++ /dev/null | |||
| @@ -1,7 +0,0 @@ | |||
| 1 | #contributor : Jimmy Wu <frozenthrone88@gmail.com> | ||
| 2 | #name : <ul id="...">...</ul> | ||
| 3 | #group : list | ||
| 4 | # -- | ||
| 5 | <ul id="$1"> | ||
| 6 | $0 | ||
| 7 | </ul> \ No newline at end of file | ||
