summaryrefslogtreecommitdiffstats
path: root/emacs.d/snippets/text-mode/html-mode/li
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--emacs.d/snippets/text-mode/html-mode/li5
-rw-r--r--emacs.d/snippets/text-mode/html-mode/li.class5
-rw-r--r--emacs.d/snippets/text-mode/html-mode/link.stylesheet4
-rw-r--r--emacs.d/snippets/text-mode/html-mode/link.stylesheet-ie6
4 files changed, 20 insertions, 0 deletions
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