home *** CD-ROM | disk | FTP | other *** search
- <?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>
- <description>HTML ΓÇö 4.01 Strict</description>
- <tag>doctype</tag>
- </snippet>
- <snippet id="doctype-1">
- <text><![CDATA[<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN"
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
- ]]></text>
- <description>XHTML ΓÇö 1.0 Frameset</description>
- <tag>doctype</tag>
- </snippet>
- <snippet id="doctype-2">
- <text><![CDATA[<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
- ]]></text>
- <description>XHTML ΓÇö 1.0 Strict</description>
- <tag>doctype</tag>
- </snippet>
- <snippet id="doctype-3">
- <text><![CDATA[<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- ]]></text>
- <description>XHTML ΓÇö 1.0 Transitional</description>
- <tag>doctype</tag>
- </snippet>
- <snippet id="doctype-4">
- <text><![CDATA[<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
- "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
- ]]></text>
- <description>XHTML ΓÇö 1.1</description>
- <tag>doctype</tag>
- </snippet>
- <snippet id="doctype-5">
- <text><![CDATA[<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
- ]]></text>
- <description>HTML ΓÇö 4.0 Transitional</description>
- <tag>doctype</tag>
- </snippet>
- <snippet id="ref">
- <text><![CDATA[<a href="${1:http://somesite.com/}">${2:$GEDIT_SELECTED_TEXT}</a>
- ]]></text>
- <accelerator><![CDATA[<Shift><Alt>l]]></accelerator>
- <description>Wrap Selection as Link</description>
- <tag>ref</tag>
- </snippet>
- <snippet id="open/close">
- <text><![CDATA[<${1:p}>$GEDIT_SELECTED_TEXT</${1}>]]></text>
- <accelerator><![CDATA[<Shift><Alt>w]]></accelerator>
- <description>Wrap Selection in Open/Close Tag</description>
- </snippet>
- <snippet id="mailto">
- <text><![CDATA[<a href="mailto:${1:joe@example.com}?subject=${2:feedback}">${3:email me}</a> $0]]></text>
- <description>Mail Anchor</description>
- <tag>mailto</tag>
- </snippet>
- <snippet id="base">
- <text><![CDATA[<base href="$1" ${2}/>$0]]></text>
- <description>Base</description>
- <tag>base</tag>
- </snippet>
- <snippet id="body">
- <text><![CDATA[<body id="${1:ID} " onload="$2"}>
- $0
- </body>]]></text>
- <description>Body</description>
- <tag>body</tag>
- </snippet>
- <snippet id="br">
- <text><![CDATA[<br />
- $0]]></text>
- <accelerator><![CDATA[<Shift><Control>space]]></accelerator>
- <description>Br</description>
- </snippet>
- <snippet id="div">
- <text><![CDATA[<div ${1}>
- ${0:$GEDIT_SELECTED_TEXT}
- </div>]]></text>
- <description>Div</description>
- <tag>div</tag>
- </snippet>
- <snippet id="form">
- <text><![CDATA[<form action="${1}" method="${2:get}">
- $0
-
- <p><input type="submit" value="${3:Continue →}" /></p>
- </form>]]></text>
- <description>Form</description>
- <tag>form</tag>
- </snippet>
- <snippet id="h">
- <text><![CDATA[<h${1:1} id="${2}">${3:$GEDIT_SELECTED_TEXT}</h${1}>
- $0]]></text>
- <description>Heading</description>
- <tag>h</tag>
- </snippet>
- <snippet id="head">
- <text><![CDATA[<head>
- <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
- <title>${1:Page Title}</title>
- $0
- </head>]]></text>
- <description>Head</description>
- <tag>head</tag>
- </snippet>
- <snippet id="input">
- <text><![CDATA[<input type="${1:text/submit/hidden/button}" name="${2:some_name}" value="$3" id="${5}" />]]></text>
- <description>Input</description>
- <tag>input</tag>
- </snippet>
- <snippet id="link">
- <text><![CDATA[<link rel="${1:stylesheet}" href="${2:/css/master.css}" type="text/css" media="${3:screen}" title="${4:no title}" charset="${5:utf-8}" />]]></text>
- <description>Link</description>
- <tag>link</tag>
- </snippet>
- <snippet id="meta">
- <text><![CDATA[<meta name="${1:name}" content="${2:content}" />]]></text>
- <description>Meta</description>
- <tag>meta</tag>
- </snippet>
- <snippet id="nbsp">
- <text><![CDATA[ ]]></text>
- <accelerator><![CDATA[<Control><Alt>space]]></accelerator>
- <description>Non-Breaking Space</description>
- </snippet>
- <snippet id="script">
- <text><![CDATA[<script type="text/javascript" language="javascript" charset="utf-8">
- // <![CDATA[
- $0
- // ]]]]><![CDATA[>
- </script>]]></text>
- <description>Script</description>
- <tag>script</tag>
- </snippet>
- <snippet id="scriptsrc">
- <text><![CDATA[<script src="$1" type="text/javascript" language="${2:javascript}" charset="${3:utf-8}" />]]></text>
- <description>Script With External Source</description>
- <tag>scriptsrc</tag>
- </snippet>
- <snippet id="style">
- <text><![CDATA[<style type="text/css" media="screen">
- /* <![CDATA[ */
- $0
- /* ]]]]><![CDATA[> */
- </style>
- ]]></text>
- <description>Style</description>
- <tag>style</tag>
- </snippet>
- <snippet id="table">
- <text><![CDATA[<table border="${1:0}" cellspacing="${2:0}" cellpadding="${3:0}">
- <tr><th>${4:Header}</th></tr>
- <tr><td>${5:Data}</td></tr>
- $0
- </table>]]></text>
- <description>Table</description>
- <tag>table</tag>
- </snippet>
- <snippet id="textarea">
- <text><![CDATA[<textarea name="${1:Name}" rows="${2:8}" cols="${3:40}">$0</textarea>]]></text>
- <description>Text Area</description>
- <tag>textarea</tag>
- </snippet>
- <snippet id="title">
- <text><![CDATA[<title>${1:Page Title}</title>]]></text>
- <description>Title</description>
- <tag>title</tag>
- </snippet>
- <snippet id="tr">
- <text><![CDATA[<tr><td>$1</td></tr>
- $0]]></text>
- <tag>tr</tag>
- <description>Table Row</description>
- </snippet>
- </snippets>
-