diff options
author | Alexander Sulfrian <alexander@sulfrian.net> | 2009-10-22 05:30:58 +0200 |
---|---|---|
committer | Alexander Sulfrian <alexander@sulfrian.net> | 2009-10-22 05:30:58 +0200 |
commit | c13334d651b13d8b047cb3dc35ad3e1ef239013f (patch) | |
tree | ce0361f3bbbe502af91b33f896644d5695680223 /emacs.d/snippets/text-mode/html-mode/div | |
parent | ff21663ded2283850f175e6de619feb5da91fef4 (diff) | |
download | dotfiles-c13334d651b13d8b047cb3dc35ad3e1ef239013f.tar.gz dotfiles-c13334d651b13d8b047cb3dc35ad3e1ef239013f.tar.xz dotfiles-c13334d651b13d8b047cb3dc35ad3e1ef239013f.zip |
added snippets for loading with module from dotfiles
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 |