mirror of
https://github.com/joaotavora/yasnippet.git
synced 2025-12-16 18:34:17 +00:00
Keep snippet vars definitions in a single format across all snippets and documentation.
The format is: # var-name: value Previously snippets used a mixture of the following formatting: #var-name: value #var-name : value # var-name: value # var-name : value
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
#name : Doctype HTML 4.01 Strict
|
||||
# name: Doctype HTML 4.01 Strict
|
||||
# key: doctype
|
||||
# --
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
|
||||
@@ -1,4 +1,4 @@
|
||||
#name : DocType XHTML 1.0 frameset
|
||||
# name: DocType XHTML 1.0 frameset
|
||||
# key: doctype
|
||||
# --
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
|
||||
@@ -1,4 +1,4 @@
|
||||
#name : DocType XHTML 1.1
|
||||
# name: DocType XHTML 1.1
|
||||
# key: doctype
|
||||
# --
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
|
||||
@@ -1,4 +1,4 @@
|
||||
#name : DocType XHTML 1.0 Strict
|
||||
# name: DocType XHTML 1.0 Strict
|
||||
# key: doctype
|
||||
# --
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
@@ -1,4 +1,4 @@
|
||||
#name : DocType XHTML 1.0 Transitional
|
||||
# name: DocType XHTML 1.0 Transitional
|
||||
# key: doctype
|
||||
# --
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
@@ -1,5 +1,5 @@
|
||||
#contributor : Jimmy Wu <frozenthrone88@gmail.com>
|
||||
#name : <meta name="..." content="..." />
|
||||
# contributor: Jimmy Wu <frozenthrone88@gmail.com>
|
||||
# name: <meta name="..." content="..." />
|
||||
# key: meta
|
||||
# --
|
||||
<meta name="${1:generator}" content="${2:content}" />
|
||||
@@ -1,5 +1,5 @@
|
||||
#contributor : Jimmy Wu <frozenthrone88@gmail.com>
|
||||
#name : <meta http-equiv="..." content="..." />
|
||||
# contributor: Jimmy Wu <frozenthrone88@gmail.com>
|
||||
# name: <meta http-equiv="..." content="..." />
|
||||
# key: meta
|
||||
# --
|
||||
<meta http-equiv="${1:Content-Type}" content="${2:text/html; charset=UTF-8}" />
|
||||
Reference in New Issue
Block a user