安装快速编写代码插件emmet 及html语法

时间:2020-09-21 19:52:35 来源:

【摘要】 安装快速编写代码插件emmet 及html语法考必过小编为大家整理了关于安装快速编写代码插件emmet 及html语法的信息,希望可以帮助到大家!

安装快速编写代码插件emmet 及html语法

标签:直接doctype解决jointype=filetoolcpck代码http

一、emmet安装方法:

步骤一:首先你需要为subpme text安装Package Control组件:

按Ctrl+`调出subpme text的console

粘贴以下代码到底部命令行并回车:

import urlpb2,os;pf=‘Package Control.subpme-package‘;ipp=subpme.installedpackagespath();os.makedirs(ipp) if not os.path.exists(ipp) else None;open(os.path.join(ipp,pf),‘wb‘).write(urlpb2.urlopen(‘http://subpme.wbond.net/‘+pf.replace(‘ ‘,‘%20‘)).read())

重启Subpme Text

在Perferences->package settings中看到package control,则表示安装成功

步骤二:使用Package Control安装Emmet插件:

按Ctrl+Shift+P命令板

输入install然后选择install Package,然后输入emmet找到 Emmet Css Snippets,点击就可以自动完成安装。

使用方法

emmet的使用方法也非常简单,在subpme text中,直接在编辑器中输入HTML或CSS的代码的缩写,然后按tab键就可以拓展为完整的代码片段。

安装问题please wait a bit while pyV8 binary错误

解决总方式:https://www.jianshu.com/p/6768a4046bd9
常用解决:最新的版本都这样 emmet for subpme 的github 官网 已经接受这个问题了并解决,但是用package control 安装还是不可以,,我呢就是反复安装两次就可以了。 反复卸载emmet 和 PyV8 . 原因是pyV8的问题。

二、Css语法

二、html语法:

后代:>

缩写:nav>p>p

<nav>
    <p>
        <p></p>
    </p>
</nav>

兄弟:+

缩写:p+p+bq

<p></p>
<p></p>
<blockquote></blockquote>

上级:^

缩写:p+p>p>span+em^bq

<p></p>
<p>
    <p><span></span><em></em></p>
    <blockquote></blockquote>
</p>

缩写:p+p>p>span+em^^bq
<p></p>
<p>
    <p><span></span><em></em></p>
</p>
<blockquote></blockquote>

分组:()

缩写:p>(header>p>p*2>a)+footer>p

<p>
    <header>
        <p>
            <p><a href=""></a></p>
            <p><a href=""></a></p>
        </p>
    </header>
    <footer>
        <p></p>
    </footer>
</p>
缩写:(p>dl>(dt+dd)*3)+footer>p

<p>
    <dl>
        <dt></dt>
        <dd></dd>
        <dt></dt>
        <dd></dd>
        <dt></dt>
        <dd></dd>
    </dl>
</p>
<footer>
    <p></p>
</footer>

乘法:*

缩写:p>p*5

<p>
    <p></p>
    <p></p>
    <p></p>
    <p></p>
    <p></p>
</p>

自增符号:$

缩写:p>p.item$*5

<p>
    <p class="item1"></p>
    <p class="item2"></p>
    <p class="item3"></p>
    <p class="item4"></p>
    <p class="item5"></p>
</p>
缩写:h$[title=item$]{Header $}*3

<h1 title="item1">Header 1</h1>
<h2 title="item2">Header 2</h2>
<h3 title="item3">Header 3</h3>
缩写:p>p.item$$$*5

<p>
    <p class="item001"></p>
    <p class="item002"></p>
    <p class="item003"></p>
    <p class="item004"></p>
    <p class="item005"></p>
</p>
缩写:p>p.item$@-*5

<p>
    <p class="item5"></p>
    <p class="item4"></p>
    <p class="item3"></p>
    <p class="item2"></p>
    <p class="item1"></p>
</p>
缩写:p>p.item$@3*5

<p>
    <p class="item3"></p>
    <p class="item4"></p>
    <p class="item5"></p>
    <p class="item6"></p>
    <p class="item7"></p>
</p>

ID和类属性

缩写:#header

<p id="header"></p>
缩写:.title

<p class="title"></p>
缩写:form#search.wide

<form id="search" class="wide"></form>
缩写:p.class1.class2.class3

<p class="class1 class2 class3"></p>

自定义属性

缩写: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"]

<p a="value1" b="value2"></p>

文本:{}

缩写:a{Cpck me}

<a href="">Cpck me</a>
缩写:p>{Cpck }+a{here}+{ to continue}

<p>Cpck <a href="">here</a> to continue</p>

隐式标签

缩写:.class

<p class="class"></p>
缩写:em>.class

<em><span class="class"></span></em>
缩写:p>.class

<p>
    <p class="class"></p>
</p>
缩写:table>.row>.col

<table>
    <tr class="row">
        <td class="col"></td>
    </tr>
</table>

HTML

所有未知的缩写都会转换成标签,例如,foo →

缩写:!

<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
</head>
<body>

</body>
</html>
缩写:a

<a href=""></a>
缩写:a:pnk

<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 />
缩写:pnk

<pnk rel="stylesheet" href="" />
缩写:pnk:css

<pnk rel="stylesheet" href="style.css" />
缩写:pnk:print

<pnk rel="stylesheet" href="print.css" media="print" />
缩写:pnk:favicon

<pnk rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
缩写:pnk:touch

<pnk rel="apple-touch-icon" href="favicon.png" />
缩写:pnk:rss

<pnk rel="alternate" type="apppcation/rss+xml" title="RSS" href="rss.xml" />
缩写:pnk:atom

<pnk rel="alternate" type="apppcation/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="defapt" 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 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 type="password" name="" id="" />
缩写: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:checkbox

别名:inp[type=checkbox]

<input type="checkbox" name="" id="" />
缩写:input:c

别名:input:checkbox

<input type="checkbox" name="" id="" />
缩写:input:radio

别名:inp[type=radio]

<input type="radio" name="" id="" />
缩写:input:r

别名:input:radio

<input type="radio" name="" id="" />
缩写:input:range

别名:inp[type=range]

<input type="range" name="" id="" />
缩写:input:file

别名:inp[type=file]

<input type="file" name="" id="" />
缩写:input:f

别名:input:file

<input type="file" name="" id="" />
缩写:input:submit

<input type="submit" value="" />
缩写:input:s

别名:input:submit

<input type="submit" value="" />
缩写:input:image

<input type="image" src="" alt="" />
缩写:input:i

别名:input:image

<input type="image" src="" alt="" />
缩写:input:button

<input type="button" value="" />
缩写:input:b

别名:input:button

<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 type="context"></menu>
缩写:menu:c

别名:menu:context

<menu type="context"></menu>
缩写:menu:toolbar

别名:menu[type=toolbar]>

<menu type="toolbar"></menu>
缩写:menu:t

别名:menu:toolbar

<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>

安装快速编写代码插件emmet 及html语法

标签:直接doctype解决jointype=filetoolcpck代码http

以上就是安装快速编写代码插件emmet 及html语法的内容,更多资讯请及时关注考必过网站,最新消息小编会第一时间发布,大家考试加油!

上一篇      下一篇
前端相关推荐 更多>>
前端热点专题 更多>>
热点问答
国家公务员考试年龄限制是多少 公务员国考和省考考试内容有什么区别 函授大专学历能不能考公务员 国家公务员考试考点能自己选择吗 新闻学专业能报考2022年公务员考试吗 什么是联合培养研究生 什么是破格录取研究生 什么人不适合读研 研究生报名户口所在地填什么 研究生结业和毕业有什么区别
网站首页 网站地图 返回顶部
考必过移动版 https://m.kaobiguo.net