[gedit] html5 doctype



commit fa60cb5fb6a525b8adb0133806d0779db568c498
Author: Jaseem Abid <jaseemabid gmail com>
Date:   Wed Jul 4 19:57:24 2012 +0530

    html5 doctype
    
    Signed-off-by: Jaseem Abid <jaseemabid gmail com>

 plugins/snippets/data/html.xml |   12 +++++++++---
 1 files changed, 9 insertions(+), 3 deletions(-)
---
diff --git a/plugins/snippets/data/html.xml b/plugins/snippets/data/html.xml
index df04c7a..74050ac 100644
--- a/plugins/snippets/data/html.xml
+++ b/plugins/snippets/data/html.xml
@@ -1,10 +1,9 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <snippets language="HTML">
   <snippet id="doctype">
-    <text><![CDATA[<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
-	"http://www.w3.org/TR/html4/strict.dtd";>
+    <text><![CDATA[<!DOCTYPE html>
 ]]></text>
-    <description>HTML â 4.01 Strict</description>
+    <description>HTML5 Doctype</description>
     <tag>doctype</tag>
   </snippet>
   <snippet id="doctype-1">
@@ -41,6 +40,13 @@
     <description>HTML â 4.0 Transitional</description>
     <tag>doctype</tag>
   </snippet>
+  <snippet id="doctype-6">
+    <text><![CDATA[<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
+	"http://www.w3.org/TR/html4/strict.dtd";>
+]]></text>
+    <description>HTML â 4.01 Strict</description>
+    <tag>doctype</tag>
+  </snippet>
   <snippet id="author">
     <text><![CDATA[<meta name="author" content="${1:author}" />
 $0]]></text>



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]