summaryrefslogtreecommitdiff
path: root/.emacs.d/mysnippets/text-mode/nxml-mode
diff options
context:
space:
mode:
authorSimeon Simeonov2013-09-19 22:27:58 +0200
committerSimeon Simeonov2013-09-19 22:27:58 +0200
commit7bf6712498ad2618bee7bf5b3866fb6da0772339 (patch)
treefd4d959c0f1679f2abf5663399d68df0a06472de /.emacs.d/mysnippets/text-mode/nxml-mode
parentb045e27c545d4027811637193632ec3ea5ef7858 (diff)
All snippets imported, init file polished
Diffstat (limited to '.emacs.d/mysnippets/text-mode/nxml-mode')
-rw-r--r--.emacs.d/mysnippets/text-mode/nxml-mode/body6
-rw-r--r--.emacs.d/mysnippets/text-mode/nxml-mode/br4
-rw-r--r--.emacs.d/mysnippets/text-mode/nxml-mode/code6
-rw-r--r--.emacs.d/mysnippets/text-mode/nxml-mode/div4
-rw-r--r--.emacs.d/mysnippets/text-mode/nxml-mode/doctype5
-rw-r--r--.emacs.d/mysnippets/text-mode/nxml-mode/doctype.xhtml1_strict5
-rw-r--r--.emacs.d/mysnippets/text-mode/nxml-mode/doctype.xhtml1_transitional5
-rw-r--r--.emacs.d/mysnippets/text-mode/nxml-mode/form6
-rw-r--r--.emacs.d/mysnippets/text-mode/nxml-mode/h15
-rw-r--r--.emacs.d/mysnippets/text-mode/nxml-mode/h25
-rw-r--r--.emacs.d/mysnippets/text-mode/nxml-mode/h35
-rw-r--r--.emacs.d/mysnippets/text-mode/nxml-mode/h45
-rw-r--r--.emacs.d/mysnippets/text-mode/nxml-mode/h55
-rw-r--r--.emacs.d/mysnippets/text-mode/nxml-mode/h65
-rw-r--r--.emacs.d/mysnippets/text-mode/nxml-mode/head6
-rw-r--r--.emacs.d/mysnippets/text-mode/nxml-mode/hr4
-rw-r--r--.emacs.d/mysnippets/text-mode/nxml-mode/href4
-rw-r--r--.emacs.d/mysnippets/text-mode/nxml-mode/html6
-rw-r--r--.emacs.d/mysnippets/text-mode/nxml-mode/img4
-rw-r--r--.emacs.d/mysnippets/text-mode/nxml-mode/input4
-rw-r--r--.emacs.d/mysnippets/text-mode/nxml-mode/li4
-rw-r--r--.emacs.d/mysnippets/text-mode/nxml-mode/link4
-rw-r--r--.emacs.d/mysnippets/text-mode/nxml-mode/meta5
-rw-r--r--.emacs.d/mysnippets/text-mode/nxml-mode/name4
-rw-r--r--.emacs.d/mysnippets/text-mode/nxml-mode/ol6
-rw-r--r--.emacs.d/mysnippets/text-mode/nxml-mode/p4
-rw-r--r--.emacs.d/mysnippets/text-mode/nxml-mode/pre6
-rw-r--r--.emacs.d/mysnippets/text-mode/nxml-mode/quote6
-rw-r--r--.emacs.d/mysnippets/text-mode/nxml-mode/span4
-rw-r--r--.emacs.d/mysnippets/text-mode/nxml-mode/style6
-rw-r--r--.emacs.d/mysnippets/text-mode/nxml-mode/table6
-rw-r--r--.emacs.d/mysnippets/text-mode/nxml-mode/tag.1l4
-rw-r--r--.emacs.d/mysnippets/text-mode/nxml-mode/tag.2l6
-rw-r--r--.emacs.d/mysnippets/text-mode/nxml-mode/td4
-rw-r--r--.emacs.d/mysnippets/text-mode/nxml-mode/th4
-rw-r--r--.emacs.d/mysnippets/text-mode/nxml-mode/title4
-rw-r--r--.emacs.d/mysnippets/text-mode/nxml-mode/tr6
-rw-r--r--.emacs.d/mysnippets/text-mode/nxml-mode/ul6
38 files changed, 188 insertions, 0 deletions
diff --git a/.emacs.d/mysnippets/text-mode/nxml-mode/body b/.emacs.d/mysnippets/text-mode/nxml-mode/body
new file mode 100644
index 0000000..ddcf0cf
--- /dev/null
+++ b/.emacs.d/mysnippets/text-mode/nxml-mode/body
@@ -0,0 +1,6 @@
1#contributor : Anders Bach Nielsen <abachn@abachn.net>
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/nxml-mode/br b/.emacs.d/mysnippets/text-mode/nxml-mode/br
new file mode 100644
index 0000000..ba35773
--- /dev/null
+++ b/.emacs.d/mysnippets/text-mode/nxml-mode/br
@@ -0,0 +1,4 @@
1#contributor : Anders Bach Nielsen <abachn@abachn.net>
2#name : <br />
3# --
4<br /> \ No newline at end of file
diff --git a/.emacs.d/mysnippets/text-mode/nxml-mode/code b/.emacs.d/mysnippets/text-mode/nxml-mode/code
new file mode 100644
index 0000000..b7c43fd
--- /dev/null
+++ b/.emacs.d/mysnippets/text-mode/nxml-mode/code
@@ -0,0 +1,6 @@
1#contributor : Anders Bach Nielsen <abachn@abachn.net>
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/nxml-mode/div b/.emacs.d/mysnippets/text-mode/nxml-mode/div
new file mode 100644
index 0000000..90fbc2e
--- /dev/null
+++ b/.emacs.d/mysnippets/text-mode/nxml-mode/div
@@ -0,0 +1,4 @@
1#contributor : Anders Bach Nielsen <abachn@abachn.net>
2#name : <div...>...</div>
3# --
4<div$1>$0</div> \ No newline at end of file
diff --git a/.emacs.d/mysnippets/text-mode/nxml-mode/doctype b/.emacs.d/mysnippets/text-mode/nxml-mode/doctype
new file mode 100644
index 0000000..3fdcf17
--- /dev/null
+++ b/.emacs.d/mysnippets/text-mode/nxml-mode/doctype
@@ -0,0 +1,5 @@
1#contributor : Anders Bach Nielsen <abachn@abachn.net>
2#name : DocType XHTML 1.1
3#group : meta
4# --
5<!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/nxml-mode/doctype.xhtml1_strict b/.emacs.d/mysnippets/text-mode/nxml-mode/doctype.xhtml1_strict
new file mode 100644
index 0000000..eca5860
--- /dev/null
+++ b/.emacs.d/mysnippets/text-mode/nxml-mode/doctype.xhtml1_strict
@@ -0,0 +1,5 @@
1#contributor : Anders Bach Nielsen <abachn@abachn.net>
2#name : DocType XHTML 1.0 Strict
3#group : meta
4# --
5<!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/nxml-mode/doctype.xhtml1_transitional b/.emacs.d/mysnippets/text-mode/nxml-mode/doctype.xhtml1_transitional
new file mode 100644
index 0000000..fba232a
--- /dev/null
+++ b/.emacs.d/mysnippets/text-mode/nxml-mode/doctype.xhtml1_transitional
@@ -0,0 +1,5 @@
1#contributor : Anders Bach Nielsen <abachn@abachn.net>
2#name : DocType XHTML 1.0 Transitional
3#group : meta
4# --
5<!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/nxml-mode/form b/.emacs.d/mysnippets/text-mode/nxml-mode/form
new file mode 100644
index 0000000..252253e
--- /dev/null
+++ b/.emacs.d/mysnippets/text-mode/nxml-mode/form
@@ -0,0 +1,6 @@
1#contributor : Anders Bach Nielsen <abachn@abachn.net>
2#name :<form method="..." action="..."></form>
3# --
4<form method="$1" action="$2">
5 $0
6</form> \ No newline at end of file
diff --git a/.emacs.d/mysnippets/text-mode/nxml-mode/h1 b/.emacs.d/mysnippets/text-mode/nxml-mode/h1
new file mode 100644
index 0000000..bc72fd6
--- /dev/null
+++ b/.emacs.d/mysnippets/text-mode/nxml-mode/h1
@@ -0,0 +1,5 @@
1#contributor : Anders Bach Nielsen <abachn@abachn.net>
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/nxml-mode/h2 b/.emacs.d/mysnippets/text-mode/nxml-mode/h2
new file mode 100644
index 0000000..b790e56
--- /dev/null
+++ b/.emacs.d/mysnippets/text-mode/nxml-mode/h2
@@ -0,0 +1,5 @@
1#contributor : Anders Bach Nielsen <abachn@abachn.net>
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/nxml-mode/h3 b/.emacs.d/mysnippets/text-mode/nxml-mode/h3
new file mode 100644
index 0000000..7dfd9d7
--- /dev/null
+++ b/.emacs.d/mysnippets/text-mode/nxml-mode/h3
@@ -0,0 +1,5 @@
1#contributor : Anders Bach Nielsen <abachn@abachn.net>
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/nxml-mode/h4 b/.emacs.d/mysnippets/text-mode/nxml-mode/h4
new file mode 100644
index 0000000..b782998
--- /dev/null
+++ b/.emacs.d/mysnippets/text-mode/nxml-mode/h4
@@ -0,0 +1,5 @@
1#contributor : Anders Bach Nielsen <abachn@abachn.net>
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/nxml-mode/h5 b/.emacs.d/mysnippets/text-mode/nxml-mode/h5
new file mode 100644
index 0000000..13a51a1
--- /dev/null
+++ b/.emacs.d/mysnippets/text-mode/nxml-mode/h5
@@ -0,0 +1,5 @@
1#contributor : Anders Bach Nielsen <abachn@abachn.net>
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/nxml-mode/h6 b/.emacs.d/mysnippets/text-mode/nxml-mode/h6
new file mode 100644
index 0000000..b2f0c55
--- /dev/null
+++ b/.emacs.d/mysnippets/text-mode/nxml-mode/h6
@@ -0,0 +1,5 @@
1#contributor : Anders Bach Nielsen <abachn@abachn.net>
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/nxml-mode/head b/.emacs.d/mysnippets/text-mode/nxml-mode/head
new file mode 100644
index 0000000..91347b9
--- /dev/null
+++ b/.emacs.d/mysnippets/text-mode/nxml-mode/head
@@ -0,0 +1,6 @@
1#contributor : Anders Bach Nielsen <abachn@abachn.net>
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/nxml-mode/hr b/.emacs.d/mysnippets/text-mode/nxml-mode/hr
new file mode 100644
index 0000000..a17e1db
--- /dev/null
+++ b/.emacs.d/mysnippets/text-mode/nxml-mode/hr
@@ -0,0 +1,4 @@
1#contributor : Anders Bach Nielsen <abachn@abachn.net>
2#name : <hr />
3# --
4<hr />
diff --git a/.emacs.d/mysnippets/text-mode/nxml-mode/href b/.emacs.d/mysnippets/text-mode/nxml-mode/href
new file mode 100644
index 0000000..0db2fae
--- /dev/null
+++ b/.emacs.d/mysnippets/text-mode/nxml-mode/href
@@ -0,0 +1,4 @@
1#contributor : Anders Bach Nielsen <abachn@abachn.net>
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/nxml-mode/html b/.emacs.d/mysnippets/text-mode/nxml-mode/html
new file mode 100644
index 0000000..85e09f7
--- /dev/null
+++ b/.emacs.d/mysnippets/text-mode/nxml-mode/html
@@ -0,0 +1,6 @@
1#contributor : Anders Bach Nielsen <abachn@abachn.net>
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/nxml-mode/img b/.emacs.d/mysnippets/text-mode/nxml-mode/img
new file mode 100644
index 0000000..1f4382b
--- /dev/null
+++ b/.emacs.d/mysnippets/text-mode/nxml-mode/img
@@ -0,0 +1,4 @@
1#contributor : Anders Bach Nielsen <abachn@abachn.net>
2#name : <img src="..." alt="..." />
3# --
4<img src="$1" alt="$2" /> \ No newline at end of file
diff --git a/.emacs.d/mysnippets/text-mode/nxml-mode/input b/.emacs.d/mysnippets/text-mode/nxml-mode/input
new file mode 100644
index 0000000..80c3503
--- /dev/null
+++ b/.emacs.d/mysnippets/text-mode/nxml-mode/input
@@ -0,0 +1,4 @@
1#contributor : Anders Bach Nielsen <abachn@abachn.net>
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/nxml-mode/li b/.emacs.d/mysnippets/text-mode/nxml-mode/li
new file mode 100644
index 0000000..c952682
--- /dev/null
+++ b/.emacs.d/mysnippets/text-mode/nxml-mode/li
@@ -0,0 +1,4 @@
1#contributor : Anders Bach Nielsen <abachn@abachn.net>
2#name : <li>...</li>
3# --
4<li>$1</li> \ No newline at end of file
diff --git a/.emacs.d/mysnippets/text-mode/nxml-mode/link b/.emacs.d/mysnippets/text-mode/nxml-mode/link
new file mode 100644
index 0000000..d93b7a5
--- /dev/null
+++ b/.emacs.d/mysnippets/text-mode/nxml-mode/link
@@ -0,0 +1,4 @@
1#contributor : Anders Bach Nielsen <abachn@abachn.net>
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/nxml-mode/meta b/.emacs.d/mysnippets/text-mode/nxml-mode/meta
new file mode 100644
index 0000000..dfee1f2
--- /dev/null
+++ b/.emacs.d/mysnippets/text-mode/nxml-mode/meta
@@ -0,0 +1,5 @@
1#contributor : Anders Bach Nielsen <abachn@abachn.net>
2#name : <meta name="..." content="..." />
3#group : meta
4# --
5<meta name="${1:generator}" content="${2:content}" /> \ No newline at end of file
diff --git a/.emacs.d/mysnippets/text-mode/nxml-mode/name b/.emacs.d/mysnippets/text-mode/nxml-mode/name
new file mode 100644
index 0000000..592d0da
--- /dev/null
+++ b/.emacs.d/mysnippets/text-mode/nxml-mode/name
@@ -0,0 +1,4 @@
1#contributor : Anders Bach Nielsen <abachn@abachn.net>
2#name : <a name="..."></a>
3# --
4<a name="$1"></a> \ No newline at end of file
diff --git a/.emacs.d/mysnippets/text-mode/nxml-mode/ol b/.emacs.d/mysnippets/text-mode/nxml-mode/ol
new file mode 100644
index 0000000..16cfe8d
--- /dev/null
+++ b/.emacs.d/mysnippets/text-mode/nxml-mode/ol
@@ -0,0 +1,6 @@
1#contributor : Anders Bach Nielsen <abachn@abachn.net>
2#name : <ol>...</ol>
3# --
4<ol>
5 $0
6</ol> \ No newline at end of file
diff --git a/.emacs.d/mysnippets/text-mode/nxml-mode/p b/.emacs.d/mysnippets/text-mode/nxml-mode/p
new file mode 100644
index 0000000..6845ba5
--- /dev/null
+++ b/.emacs.d/mysnippets/text-mode/nxml-mode/p
@@ -0,0 +1,4 @@
1#contributor : Anders Bach Nielsen <abachn@abachn.net>
2#name : <p>...</p>
3# --
4<p>$1</p> \ No newline at end of file
diff --git a/.emacs.d/mysnippets/text-mode/nxml-mode/pre b/.emacs.d/mysnippets/text-mode/nxml-mode/pre
new file mode 100644
index 0000000..d70b722
--- /dev/null
+++ b/.emacs.d/mysnippets/text-mode/nxml-mode/pre
@@ -0,0 +1,6 @@
1#contributor : Anders Bach Nielsen <abachn@abachn.net>
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/nxml-mode/quote b/.emacs.d/mysnippets/text-mode/nxml-mode/quote
new file mode 100644
index 0000000..20fed1e
--- /dev/null
+++ b/.emacs.d/mysnippets/text-mode/nxml-mode/quote
@@ -0,0 +1,6 @@
1#contributor : Anders Bach Nielsen <abachn@abachn.net>
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/nxml-mode/span b/.emacs.d/mysnippets/text-mode/nxml-mode/span
new file mode 100644
index 0000000..a0bba2a
--- /dev/null
+++ b/.emacs.d/mysnippets/text-mode/nxml-mode/span
@@ -0,0 +1,4 @@
1#contributor : Anders Bach Nielsen <abachn@abachn.net>
2#name : <span>...</span>
3# --
4<span>$1</span> \ No newline at end of file
diff --git a/.emacs.d/mysnippets/text-mode/nxml-mode/style b/.emacs.d/mysnippets/text-mode/nxml-mode/style
new file mode 100644
index 0000000..b80be1c
--- /dev/null
+++ b/.emacs.d/mysnippets/text-mode/nxml-mode/style
@@ -0,0 +1,6 @@
1#contributor : Anders Bach Nielsen <abachn@abachn.net>
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/nxml-mode/table b/.emacs.d/mysnippets/text-mode/nxml-mode/table
new file mode 100644
index 0000000..03fd119
--- /dev/null
+++ b/.emacs.d/mysnippets/text-mode/nxml-mode/table
@@ -0,0 +1,6 @@
1#contributor : Anders Bach Nielsen <abachn@abachn.net>
2#name : <table>...</table>
3# --
4<table>
5 $0
6</table> \ No newline at end of file
diff --git a/.emacs.d/mysnippets/text-mode/nxml-mode/tag.1l b/.emacs.d/mysnippets/text-mode/nxml-mode/tag.1l
new file mode 100644
index 0000000..8988635
--- /dev/null
+++ b/.emacs.d/mysnippets/text-mode/nxml-mode/tag.1l
@@ -0,0 +1,4 @@
1#contributor : Anders Bach Nielsen <abachn@abachn.net>
2#name : <tag>...</tag>
3# --
4<${1:tag}>$2</$1>$0 \ No newline at end of file
diff --git a/.emacs.d/mysnippets/text-mode/nxml-mode/tag.2l b/.emacs.d/mysnippets/text-mode/nxml-mode/tag.2l
new file mode 100644
index 0000000..08b4a26
--- /dev/null
+++ b/.emacs.d/mysnippets/text-mode/nxml-mode/tag.2l
@@ -0,0 +1,6 @@
1#contributor : Anders Bach Nielsen <abachn@abachn.net>
2#name : <tag> \n...\n</tag>
3# --
4<${1:tag}>
5 $2
6</$1>$0 \ No newline at end of file
diff --git a/.emacs.d/mysnippets/text-mode/nxml-mode/td b/.emacs.d/mysnippets/text-mode/nxml-mode/td
new file mode 100644
index 0000000..f4615a7
--- /dev/null
+++ b/.emacs.d/mysnippets/text-mode/nxml-mode/td
@@ -0,0 +1,4 @@
1#contributor : Anders Bach Nielsen <abachn@abachn.net>
2#name : <td>...</td>
3# --
4<td$1>$2</td> \ No newline at end of file
diff --git a/.emacs.d/mysnippets/text-mode/nxml-mode/th b/.emacs.d/mysnippets/text-mode/nxml-mode/th
new file mode 100644
index 0000000..d988b20
--- /dev/null
+++ b/.emacs.d/mysnippets/text-mode/nxml-mode/th
@@ -0,0 +1,4 @@
1#contributor : Anders Bach Nielsen <abachn@abachn.net>
2#name : <th>...</th>
3# --
4<th$1>$2</th> \ No newline at end of file
diff --git a/.emacs.d/mysnippets/text-mode/nxml-mode/title b/.emacs.d/mysnippets/text-mode/nxml-mode/title
new file mode 100644
index 0000000..7cd238a
--- /dev/null
+++ b/.emacs.d/mysnippets/text-mode/nxml-mode/title
@@ -0,0 +1,4 @@
1#contributor : Anders Bach Nielsen <abachn@abachn.net>
2#name : <title>...</title>
3# --
4<title>$1</title> \ No newline at end of file
diff --git a/.emacs.d/mysnippets/text-mode/nxml-mode/tr b/.emacs.d/mysnippets/text-mode/nxml-mode/tr
new file mode 100644
index 0000000..c72daf2
--- /dev/null
+++ b/.emacs.d/mysnippets/text-mode/nxml-mode/tr
@@ -0,0 +1,6 @@
1#contributor : Anders Bach Nielsen <abachn@abachn.net>
2#name : <tr>...</tr>
3# --
4<tr>
5 $0
6</tr> \ No newline at end of file
diff --git a/.emacs.d/mysnippets/text-mode/nxml-mode/ul b/.emacs.d/mysnippets/text-mode/nxml-mode/ul
new file mode 100644
index 0000000..dac5a66
--- /dev/null
+++ b/.emacs.d/mysnippets/text-mode/nxml-mode/ul
@@ -0,0 +1,6 @@
1#contributor : Anders Bach Nielsen <abachn@abachn.net>
2#name : <ul>...</ul>
3# --
4<ul>
5 $0
6</ul> \ No newline at end of file