diff options
Diffstat (limited to '')
-rw-r--r-- | emacs.d/snippets/text-mode/html-mode/div | 3 | ||||
-rw-r--r-- | emacs.d/snippets/text-mode/html-mode/div.class | 6 | ||||
-rw-r--r-- | emacs.d/snippets/text-mode/html-mode/div.id | 6 | ||||
-rw-r--r-- | emacs.d/snippets/text-mode/html-mode/div.id-class | 6 |
4 files changed, 21 insertions, 0 deletions
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 |