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