Last commit before tagging and releasing

This commit is contained in:
capitaomorte
2009-08-29 17:59:02 +00:00
parent 15c7703b5b
commit b8dcf61367
640 changed files with 4360 additions and 77 deletions

View File

@@ -0,0 +1,6 @@
# -*- mode: snippet -*-
# key: cdata
# contributor: Translated from TextMate Snippet
# name: CDATA
# --
<![CDATA[$0]]>

View File

@@ -0,0 +1,7 @@
# -*- mode: snippet -*-
# contributor: Translated from TextMate Snippet
# name: Special: Return Inside Empty Open/Close Tags
# binding: "
"
# --

View File

@@ -0,0 +1,6 @@
# -*- mode: snippet -*-
# key: xml
# contributor: Translated from TextMate Snippet
# name: XML Processing Instruction
# --
<?xml version="1.0" encoding="UTF-8"?>

View File

@@ -0,0 +1,7 @@
# -*- mode: snippet -*-
# key: <a
# contributor: Translated from TextMate Snippet
# name: Long Attribute Tag
# --
<${1:name} ${2:attr="value"}>$0
</${1:name}>

View File

@@ -0,0 +1,6 @@
# -*- mode: snippet -*-
# key: <
# contributor: Translated from TextMate Snippet
# name: Long Tag
# --
<${1:name}>$0</${1/([^ ]+).*/$1/}>

View File

@@ -0,0 +1,6 @@
# -*- mode: snippet -*-
# key: >
# contributor: Translated from TextMate Snippet
# name: Short Tag
# --
<${1:name} />