基本階層語法
-
nav>ul>li
<nav> |
加入運算式「*」
-
ul>li*5
<ul> |
加入字元變數「$」
-
ul>li.item$*5
<ul> |
-
h$[title=item$]{Header $}*3
<h1 title="item1">Header 1</h1> |
-
ul>li.item$$$*5
<ul> |
-
ul>li.item$@-*5
<ul> |
-
ul>li.item$@3*5
<ul> |
-
form#search.wide
<form id="search" class="wide"></form> |
-
p.class1.class2.class3
<p class="class1 class2 class3"></p> |
ID and CLASS attributes 快速輸出id和class標籤結構
-
#header
<div id="header"></div>
-
.header
<div class="header"></div>
Sibling: + 組合標籤
-
div+p+bq
<div></div>
<p></p>
<blockquote></blockquote>
Climb-up: ^
-
div+div>p>span+em^bq
<div></div>
<div>
<p>
<span></span>
<em></em>
</p>
<blockquote></blockquote>
</div> -
div+div>p>span+em^^bq
<div></div>
<div>
<p>
<span></span>
<em></em>
</p>
</div>
<blockquote></blockquote>
Grouping: ()
-
div>(header>ul>li*2>a)+footer>p
<div>
<header>
<ul>
<li><a href=""></a></li>
<li><a href=""></a></li>
</ul>
</header>
<footer>
<p></p>
</footer>
</div> -
(div>dl>(dt+dd)*3)+footer>p
<div>
<dl>
<dt></dt><dd></dd>
<dt></dt><dd></dd>
<dt></dt><dd></dd>
</dl>
</div>
<footer>
<p></p>
</footer>
Custom attributes 自定義對象
-
p[title="Hello world"]
<p title="Hello world"></p>
-
td[rowspan=2 colspan=3 title]
<td rowspan="2" colspan="3" title=""></td>
-
[a='value1' b="value2"]
<div a="value1" b="value2"></div>
Text: {}
-
a{Click me}
<a href="">Click me</a>
-
p>{Click }+a{here}+{ to continue}
<p>Click<a href="">here</a>to continue</p>
Implicit tag names
-
.class
<div class="class"></div>
-
em>.class
<em><span class="class"></span></em>
-
ul>.class
<ul><li class="class"></li></ul>
-
table>.row>.col
<table>
<tr class="row">
<td class="col"></td>
</tr>
</table> -
html:5
<html lang="en">
<head><meta charset="UTF-8" />
<title>Document</title>
</head>
<body>
</body>
</html>
html元素快速輸出
-
a
<a href=""></a>
-
a:link
<a href="http://"></a>
-
a:mail
<a href="mailto:"></a>
-
abbr
<abbr title=""></abbr>
-
acronym
<acronym title=""></acronym>
-
base
<base href="" />
-
basefont
<basefont />
-
br
<br />
-
frame
<frame />
-
hr
<hr />
-
bdo
<bdo dir=""></bdo>
-
bdo:r
<bdo dir="rtl"></bdo>
-
bdo:l
<bdo dir="ltr"></bdo>
-
col
<col />
-
link
<link rel="stylesheet" href="" />
-
link:css
<link rel="stylesheet" href="style.css" />
-
link:print
<link rel="stylesheet" href="print.css" media="print" />
-
link:favicon
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
-
link:touch
<link rel="apple-touch-icon" href="favicon.png" />
-
link:rss
<link rel="alternate" type="application/rss+xml" title="RSS" href="rss.xml" />
-
link:atom
<link rel="alternate" type="application/atom+xml" title="Atom" href="atom.xml" />
-
meta
<meta />
-
meta:utf
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
-
meta:win
<meta http-equiv="Content-Type" content="text/html;charset=windows-1251" />
-
meta:vp
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0" />
-
meta:compat
<meta http-equiv="X-UA-Compatible" content="IE=7" />
-
style
<style></style>
-
script
<script></script>
-
script:src
<script src=""></script>
-
img
<img src="" alt="" />
-
iframe
<iframe src="" frameborder="0"></iframe>
-
embed
<embed src="" type="" />
-
object
<object data="" type=""></object>
-
param
<param name="" value="" />
-
map
<map name=""></map>
-
area
<area shape="" coords="" href="" alt="" />
-
area:d
<area shape="default" href="" alt="" />
-
area:c
<area shape="circle" coords="" href="" alt="" />
-
area:r
<area shape="rect" coords="" href="" alt="" />
-
area:p
<area shape="poly" coords="" href="" alt="" />
-
form
<form action=""></form>
-
form:get
<form action="" method="get"></form>
-
form:post
<form action="" method="post"></form>
-
label
<label for=""></label>
-
input
<input type="text" />
-
inp
<input type="text" name="" id="" />
-
input:hidden
或input[type=hidden name]
或input:h
或input:hidden
<input type="hidden" name="" />
-
input:text
或input:t
或inp
<input type="text" name="" id="" />
-
input:search
或inp[type=search]
<input type="search" name="" id="" />
-
input:email
或inp[type=email]
<input type="email" name="" id="" />
-
input:url
或inp[type=url]
<input type="url" name="" id="" />
-
input:password
或inp[type=password]
或input:p
或input:password
<input type="password" name="" id="" />
-
input:datetime
或inp[type=datetime]
<input type="datetime" name="" id="" />
-
input:date
或inp[type=date]
<input type="date" name="" id="" />
-
input:datetime-local
或inp[type=datetime-local]
<input type="datetime-local" name="" id="" />
-
input:month
或inp[type=month]
<input type="month" name="" id="" />
-
input:week
或inp[type=week]
<input type="week" name="" id="" />
-
input:time
或inp[type=time]
<input type="time" name="" id="" />
-
input:number
或inp[type=number]
<input type="number" name="" id="" />
-
input:color
或inp[type=color]
<input type="color" name="" id="" />
-
input:c
或input:checkbox
<input type="checkbox" name="" id="" />
-
input:radio
或inp[type=radio]
或input:r
<input type="radio" name="" id="" />
-
input:range
或inp[type=range]
<input type="range" name="" id="" />
-
input:file
或inp[type=file]
或input:f
<input type="file" name="" id="" />
-
input:submit
或input:s
<input type="submit" value="" />
-
input:image
<input type="image" src="" alt="" />
-
input:image
或input:i
<input type="image" src="" alt="" />
-
input:button
<input type="button" value="" />
-
input:button
或input:b
<input type="button" value="" />
-
isindex
<isindex />
-
input:reset
或input:button[type=reset]
<input type="reset" value="" />
-
select
<select name="" id=""></select>
-
option
<option value=""></option>
-
textarea
<textarea name="" id="" cols="30" rows="10"></textarea>
-
menu:context
或menu[type=context]>
或menu:c
<menu type="context"></menu>
-
menu:toolbar
或menu[type=toolbar]>
或menu:t
<menu type="toolbar"></menu>
-
video
<video src=""></video>
-
audio
<audio src=""></audio>
-
html:xml
<html xmlns="http://www.w3.org/1999/xhtml"></html>
-
keygen
<keygen />
-
command
<command />
-
bq
或blockquote
<blockquote></blockquote>
-
acr
或acronym
<acronym title=""></acronym>
-
fig
或figure
<figure></figure>
-
figc
或figcaption
<figcaption></figcaption>
-
ifr
或iframe
<iframe src="" frameborder="0"></iframe>
-
emb
或embed
<embed src="" type="" />
-
obj
或object
<object data="" type=""></object>
-
src
或source
<source></source>
-
cap
或caption
<caption></caption>
-
colg
或colgroup
<colgroup></colgroup>
-
fst
或fset
或fieldset
<fieldset></fieldset>
-
btn
或button
<button></button>
-
btn:b
或button[type=button]
<button type="button"></button>
-
btn:r
或button[type=reset]
<button type="reset"></button>
-
btn:s
或button[type=submit]
<button type="submit"></button>
-
optg
或optgroup
<optgroup></optgroup>
-
opt
或option
<option value=""></option>
-
tarea
或textarea
<textarea name="" id="" cols="30" rows="10"></textarea>
-
leg
或legend
<legend></legend>
-
sect
或section
<section></section>
-
art
或article
<article></article>
-
hdr
或header
<header></header>
-
ftr
或footer
<footer></footer>
-
adr
或address
<address></address>
-
dlg
或dialog
<dialog></dialog>
-
str
或strong
<strong></strong>
-
prog
或progress
<progress></progress>
-
datag
或datagrid
<datagrid></datagrid>
-
datal
或datalist
<datalist></datalist>
-
kg
或keygen
<keygen />
-
out
或output
<output></output>
-
det
或details
<details></details>
-
cmd
或command
<command />
-
ol+
或ol>li
<ol><li></li></ol>
-
ul+
或ul>li
<ul><li></li></ul>
-
dl+
或dl>dt+dd
<dl><dt></dt><dd></dd></dl>
-
map+
或map>area
<map name=""><area shape="" coords="" href="" alt="" /></map>
-
table+
或table>tr>td
<table><tr><td></td></tr></table>
-
colgroup+
或colg+
或colgroup>col
<colgroup> <col /> </colgroup>
-
tr+
或tr>td
<tr><td></td></tr>
-
select+
或select>option
<select name="" id=""> <option value=""></option> </select>
-
optgroup+
或optg+
或optgroup>option
<optgroup><option value=""></option></optgroup>
-
!!!
-
!!!4t
-
!!!4s
-
!!!xt
-
!!!xs
-
!!!xxs
-
c
<!-- ${child} -->
-
cc:ie6
<!--[if lte IE 6]> ${child} <![endif]-->
-
cc:ie
<!--[if IE]> ${child} <![endif]-->
-
cc:noie
<!--[if !IE]><!--> ${child} <!--<![endif]-->