html-825a7c38.js 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854
  1. import{g as l}from"./index-d7fba904.js";function r(p,i){for(var n=0;n<i.length;n++){const t=i[n];if(typeof t!="string"&&!Array.isArray(t)){for(const e in t)if(e!=="default"&&!(e in p)){const s=Object.getOwnPropertyDescriptor(t,e);s&&Object.defineProperty(p,e,s.get?s:{enumerable:!0,get:()=>t[e]})}}}return Object.freeze(Object.defineProperty(p,Symbol.toStringTag,{value:"Module"}))}var $={exports:{}};(function(p,i){ace.define("ace/snippets/html.snippets",["require","exports","module"],function(n,t,e){e.exports=`# Some useful Unicode entities
  2. # Non-Breaking Space
  3. snippet nbs
  4. &nbsp;
  5. # ←
  6. snippet left
  7. &#x2190;
  8. # →
  9. snippet right
  10. &#x2192;
  11. # ↑
  12. snippet up
  13. &#x2191;
  14. # ↓
  15. snippet down
  16. &#x2193;
  17. # ↩
  18. snippet return
  19. &#x21A9;
  20. # ⇤
  21. snippet backtab
  22. &#x21E4;
  23. # ⇥
  24. snippet tab
  25. &#x21E5;
  26. # ⇧
  27. snippet shift
  28. &#x21E7;
  29. # ⌃
  30. snippet ctrl
  31. &#x2303;
  32. # ⌅
  33. snippet enter
  34. &#x2305;
  35. # ⌘
  36. snippet cmd
  37. &#x2318;
  38. # ⌥
  39. snippet option
  40. &#x2325;
  41. # ⌦
  42. snippet delete
  43. &#x2326;
  44. # ⌫
  45. snippet backspace
  46. &#x232B;
  47. # ⎋
  48. snippet esc
  49. &#x238B;
  50. # Generic Doctype
  51. snippet doctype HTML 4.01 Strict
  52. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
  53. "http://www.w3.org/TR/html4/strict.dtd">
  54. snippet doctype HTML 4.01 Transitional
  55. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
  56. "http://www.w3.org/TR/html4/loose.dtd">
  57. snippet doctype HTML 5
  58. <!DOCTYPE HTML>
  59. snippet doctype XHTML 1.0 Frameset
  60. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
  61. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  62. snippet doctype XHTML 1.0 Strict
  63. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
  64. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  65. snippet doctype XHTML 1.0 Transitional
  66. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  67. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  68. snippet doctype XHTML 1.1
  69. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
  70. "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
  71. # HTML Doctype 4.01 Strict
  72. snippet docts
  73. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
  74. "http://www.w3.org/TR/html4/strict.dtd">
  75. # HTML Doctype 4.01 Transitional
  76. snippet doct
  77. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
  78. "http://www.w3.org/TR/html4/loose.dtd">
  79. # HTML Doctype 5
  80. snippet doct5
  81. <!DOCTYPE html>
  82. # XHTML Doctype 1.0 Frameset
  83. snippet docxf
  84. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN"
  85. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
  86. # XHTML Doctype 1.0 Strict
  87. snippet docxs
  88. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
  89. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  90. # XHTML Doctype 1.0 Transitional
  91. snippet docxt
  92. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  93. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  94. # XHTML Doctype 1.1
  95. snippet docx
  96. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
  97. "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
  98. # html5shiv
  99. snippet html5shiv
  100. <!--[if lte IE 8]>
  101. <script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.min.js"><\/script>
  102. <![endif]-->
  103. snippet html5printshiv
  104. <!--[if lte IE 8]>
  105. <script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv-printshiv.min.js"><\/script>
  106. <![endif]-->
  107. # Attributes
  108. snippet attr
  109. \${1:attribute}="\${2:property}"
  110. snippet attr+
  111. \${1:attribute}="\${2:property}" attr+\${3}
  112. snippet .
  113. class="\${1}"\${2}
  114. snippet #
  115. id="\${1}"\${2}
  116. snippet alt
  117. alt="\${1}"\${2}
  118. snippet charset
  119. charset="\${1:utf-8}"\${2}
  120. snippet data
  121. data-\${1}="\${2:$1}"\${3}
  122. snippet for
  123. for="\${1}"\${2}
  124. snippet height
  125. height="\${1}"\${2}
  126. snippet href
  127. href="\${1:#}"\${2}
  128. snippet lang
  129. lang="\${1:en}"\${2}
  130. snippet media
  131. media="\${1}"\${2}
  132. snippet name
  133. name="\${1}"\${2}
  134. snippet rel
  135. rel="\${1}"\${2}
  136. snippet scope
  137. scope="\${1:row}"\${2}
  138. snippet src
  139. src="\${1}"\${2}
  140. snippet title=
  141. title="\${1}"\${2}
  142. snippet type
  143. type="\${1}"\${2}
  144. snippet value
  145. value="\${1}"\${2}
  146. snippet width
  147. width="\${1}"\${2}
  148. # Elements
  149. snippet a
  150. <a href="\${1:#}">\${2:$1}</a>
  151. snippet a.
  152. <a class="\${1}" href="\${2:#}">\${3:$1}</a>
  153. snippet a#
  154. <a id="\${1}" href="\${2:#}">\${3:$1}</a>
  155. snippet a:ext
  156. <a href="http://\${1:example.com}">\${2:$1}</a>
  157. snippet a:mail
  158. <a href="mailto:\${1:joe@example.com}?subject=\${2:feedback}">\${3:email me}</a>
  159. snippet abbr
  160. <abbr title="\${1}">\${2}</abbr>
  161. snippet address
  162. <address>
  163. \${1}
  164. </address>
  165. snippet area
  166. <area shape="\${1:rect}" coords="\${2}" href="\${3}" alt="\${4}" />
  167. snippet area+
  168. <area shape="\${1:rect}" coords="\${2}" href="\${3}" alt="\${4}" />
  169. area+\${5}
  170. snippet area:c
  171. <area shape="circle" coords="\${1}" href="\${2}" alt="\${3}" />
  172. snippet area:d
  173. <area shape="default" coords="\${1}" href="\${2}" alt="\${3}" />
  174. snippet area:p
  175. <area shape="poly" coords="\${1}" href="\${2}" alt="\${3}" />
  176. snippet area:r
  177. <area shape="rect" coords="\${1}" href="\${2}" alt="\${3}" />
  178. snippet article
  179. <article>
  180. \${1}
  181. </article>
  182. snippet article.
  183. <article class="\${1}">
  184. \${2}
  185. </article>
  186. snippet article#
  187. <article id="\${1}">
  188. \${2}
  189. </article>
  190. snippet aside
  191. <aside>
  192. \${1}
  193. </aside>
  194. snippet aside.
  195. <aside class="\${1}">
  196. \${2}
  197. </aside>
  198. snippet aside#
  199. <aside id="\${1}">
  200. \${2}
  201. </aside>
  202. snippet audio
  203. <audio src="\${1}>\${2}</audio>
  204. snippet b
  205. <b>\${1}</b>
  206. snippet base
  207. <base href="\${1}" target="\${2}" />
  208. snippet bdi
  209. <bdi>\${1}</bdo>
  210. snippet bdo
  211. <bdo dir="\${1}">\${2}</bdo>
  212. snippet bdo:l
  213. <bdo dir="ltr">\${1}</bdo>
  214. snippet bdo:r
  215. <bdo dir="rtl">\${1}</bdo>
  216. snippet blockquote
  217. <blockquote>
  218. \${1}
  219. </blockquote>
  220. snippet body
  221. <body>
  222. \${1}
  223. </body>
  224. snippet br
  225. <br />\${1}
  226. snippet button
  227. <button type="\${1:submit}">\${2}</button>
  228. snippet button.
  229. <button class="\${1:button}" type="\${2:submit}">\${3}</button>
  230. snippet button#
  231. <button id="\${1}" type="\${2:submit}">\${3}</button>
  232. snippet button:s
  233. <button type="submit">\${1}</button>
  234. snippet button:r
  235. <button type="reset">\${1}</button>
  236. snippet canvas
  237. <canvas id="\${1:canvas}"></canvas>
  238. snippet caption
  239. <caption>\${1}</caption>
  240. snippet cite
  241. <cite>\${1}</cite>
  242. snippet code
  243. <code>\${1}</code>
  244. snippet col
  245. <col />\${1}
  246. snippet col+
  247. <col />
  248. col+\${1}
  249. snippet colgroup
  250. <colgroup>
  251. \${1}
  252. </colgroup>
  253. snippet colgroup+
  254. <colgroup>
  255. <col />
  256. col+\${1}
  257. </colgroup>
  258. snippet command
  259. <command type="command" label="\${1}" icon="\${2}" />
  260. snippet command:c
  261. <command type="checkbox" label="\${1}" icon="\${2}" />
  262. snippet command:r
  263. <command type="radio" radiogroup="\${1}" label="\${2}" icon="\${3}" />
  264. snippet datagrid
  265. <datagrid>
  266. \${1}
  267. </datagrid>
  268. snippet datalist
  269. <datalist>
  270. \${1}
  271. </datalist>
  272. snippet datatemplate
  273. <datatemplate>
  274. \${1}
  275. </datatemplate>
  276. snippet dd
  277. <dd>\${1}</dd>
  278. snippet dd.
  279. <dd class="\${1}">\${2}</dd>
  280. snippet dd#
  281. <dd id="\${1}">\${2}</dd>
  282. snippet del
  283. <del>\${1}</del>
  284. snippet details
  285. <details>\${1}</details>
  286. snippet dfn
  287. <dfn>\${1}</dfn>
  288. snippet dialog
  289. <dialog>
  290. \${1}
  291. </dialog>
  292. snippet div
  293. <div>
  294. \${1}
  295. </div>
  296. snippet div.
  297. <div class="\${1}">
  298. \${2}
  299. </div>
  300. snippet div#
  301. <div id="\${1}">
  302. \${2}
  303. </div>
  304. snippet dl
  305. <dl>
  306. \${1}
  307. </dl>
  308. snippet dl.
  309. <dl class="\${1}">
  310. \${2}
  311. </dl>
  312. snippet dl#
  313. <dl id="\${1}">
  314. \${2}
  315. </dl>
  316. snippet dl+
  317. <dl>
  318. <dt>\${1}</dt>
  319. <dd>\${2}</dd>
  320. dt+\${3}
  321. </dl>
  322. snippet dt
  323. <dt>\${1}</dt>
  324. snippet dt.
  325. <dt class="\${1}">\${2}</dt>
  326. snippet dt#
  327. <dt id="\${1}">\${2}</dt>
  328. snippet dt+
  329. <dt>\${1}</dt>
  330. <dd>\${2}</dd>
  331. dt+\${3}
  332. snippet em
  333. <em>\${1}</em>
  334. snippet embed
  335. <embed src=\${1} type="\${2} />
  336. snippet fieldset
  337. <fieldset>
  338. \${1}
  339. </fieldset>
  340. snippet fieldset.
  341. <fieldset class="\${1}">
  342. \${2}
  343. </fieldset>
  344. snippet fieldset#
  345. <fieldset id="\${1}">
  346. \${2}
  347. </fieldset>
  348. snippet fieldset+
  349. <fieldset>
  350. <legend><span>\${1}</span></legend>
  351. \${2}
  352. </fieldset>
  353. fieldset+\${3}
  354. snippet figcaption
  355. <figcaption>\${1}</figcaption>
  356. snippet figure
  357. <figure>\${1}</figure>
  358. snippet footer
  359. <footer>
  360. \${1}
  361. </footer>
  362. snippet footer.
  363. <footer class="\${1}">
  364. \${2}
  365. </footer>
  366. snippet footer#
  367. <footer id="\${1}">
  368. \${2}
  369. </footer>
  370. snippet form
  371. <form action="\${1}" method="\${2:get}" accept-charset="utf-8">
  372. \${3}
  373. </form>
  374. snippet form.
  375. <form class="\${1}" action="\${2}" method="\${3:get}" accept-charset="utf-8">
  376. \${4}
  377. </form>
  378. snippet form#
  379. <form id="\${1}" action="\${2}" method="\${3:get}" accept-charset="utf-8">
  380. \${4}
  381. </form>
  382. snippet h1
  383. <h1>\${1}</h1>
  384. snippet h1.
  385. <h1 class="\${1}">\${2}</h1>
  386. snippet h1#
  387. <h1 id="\${1}">\${2}</h1>
  388. snippet h2
  389. <h2>\${1}</h2>
  390. snippet h2.
  391. <h2 class="\${1}">\${2}</h2>
  392. snippet h2#
  393. <h2 id="\${1}">\${2}</h2>
  394. snippet h3
  395. <h3>\${1}</h3>
  396. snippet h3.
  397. <h3 class="\${1}">\${2}</h3>
  398. snippet h3#
  399. <h3 id="\${1}">\${2}</h3>
  400. snippet h4
  401. <h4>\${1}</h4>
  402. snippet h4.
  403. <h4 class="\${1}">\${2}</h4>
  404. snippet h4#
  405. <h4 id="\${1}">\${2}</h4>
  406. snippet h5
  407. <h5>\${1}</h5>
  408. snippet h5.
  409. <h5 class="\${1}">\${2}</h5>
  410. snippet h5#
  411. <h5 id="\${1}">\${2}</h5>
  412. snippet h6
  413. <h6>\${1}</h6>
  414. snippet h6.
  415. <h6 class="\${1}">\${2}</h6>
  416. snippet h6#
  417. <h6 id="\${1}">\${2}</h6>
  418. snippet head
  419. <head>
  420. <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  421. <title>\${1:\`substitute(Filename('', 'Page Title'), '^.', '\\u&', '')\`}</title>
  422. \${2}
  423. </head>
  424. snippet header
  425. <header>
  426. \${1}
  427. </header>
  428. snippet header.
  429. <header class="\${1}">
  430. \${2}
  431. </header>
  432. snippet header#
  433. <header id="\${1}">
  434. \${2}
  435. </header>
  436. snippet hgroup
  437. <hgroup>
  438. \${1}
  439. </hgroup>
  440. snippet hgroup.
  441. <hgroup class="\${1}>
  442. \${2}
  443. </hgroup>
  444. snippet hr
  445. <hr />\${1}
  446. snippet html
  447. <html>
  448. \${1}
  449. </html>
  450. snippet xhtml
  451. <html xmlns="http://www.w3.org/1999/xhtml">
  452. \${1}
  453. </html>
  454. snippet html5
  455. <!DOCTYPE html>
  456. <html>
  457. <head>
  458. <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  459. <title>\${1:\`substitute(Filename('', 'Page Title'), '^.', '\\u&', '')\`}</title>
  460. \${2:meta}
  461. </head>
  462. <body>
  463. \${3:body}
  464. </body>
  465. </html>
  466. snippet xhtml5
  467. <!DOCTYPE html>
  468. <html xmlns="http://www.w3.org/1999/xhtml">
  469. <head>
  470. <meta http-equiv="content-type" content="application/xhtml+xml; charset=utf-8" />
  471. <title>\${1:\`substitute(Filename('', 'Page Title'), '^.', '\\u&', '')\`}</title>
  472. \${2:meta}
  473. </head>
  474. <body>
  475. \${3:body}
  476. </body>
  477. </html>
  478. snippet i
  479. <i>\${1}</i>
  480. snippet iframe
  481. <iframe src="\${1}" frameborder="0"></iframe>\${2}
  482. snippet iframe.
  483. <iframe class="\${1}" src="\${2}" frameborder="0"></iframe>\${3}
  484. snippet iframe#
  485. <iframe id="\${1}" src="\${2}" frameborder="0"></iframe>\${3}
  486. snippet img
  487. <img src="\${1}" alt="\${2}" />\${3}
  488. snippet img.
  489. <img class="\${1}" src="\${2}" alt="\${3}" />\${4}
  490. snippet img#
  491. <img id="\${1}" src="\${2}" alt="\${3}" />\${4}
  492. snippet input
  493. <input type="\${1:text/submit/hidden/button/image}" name="\${2}" id="\${3:$2}" value="\${4}" />\${5}
  494. snippet input.
  495. <input class="\${1}" type="\${2:text/submit/hidden/button/image}" name="\${3}" id="\${4:$3}" value="\${5}" />\${6}
  496. snippet input:text
  497. <input type="text" name="\${1}" id="\${2:$1}" value="\${3}" />\${4}
  498. snippet input:submit
  499. <input type="submit" name="\${1}" id="\${2:$1}" value="\${3}" />\${4}
  500. snippet input:hidden
  501. <input type="hidden" name="\${1}" id="\${2:$1}" value="\${3}" />\${4}
  502. snippet input:button
  503. <input type="button" name="\${1}" id="\${2:$1}" value="\${3}" />\${4}
  504. snippet input:image
  505. <input type="image" name="\${1}" id="\${2:$1}" src="\${3}" alt="\${4}" />\${5}
  506. snippet input:checkbox
  507. <input type="checkbox" name="\${1}" id="\${2:$1}" />\${3}
  508. snippet input:radio
  509. <input type="radio" name="\${1}" id="\${2:$1}" />\${3}
  510. snippet input:color
  511. <input type="color" name="\${1}" id="\${2:$1}" value="\${3}" />\${4}
  512. snippet input:date
  513. <input type="date" name="\${1}" id="\${2:$1}" value="\${3}" />\${4}
  514. snippet input:datetime
  515. <input type="datetime" name="\${1}" id="\${2:$1}" value="\${3}" />\${4}
  516. snippet input:datetime-local
  517. <input type="datetime-local" name="\${1}" id="\${2:$1}" value="\${3}" />\${4}
  518. snippet input:email
  519. <input type="email" name="\${1}" id="\${2:$1}" value="\${3}" />\${4}
  520. snippet input:file
  521. <input type="file" name="\${1}" id="\${2:$1}" value="\${3}" />\${4}
  522. snippet input:month
  523. <input type="month" name="\${1}" id="\${2:$1}" value="\${3}" />\${4}
  524. snippet input:number
  525. <input type="number" name="\${1}" id="\${2:$1}" value="\${3}" />\${4}
  526. snippet input:password
  527. <input type="password" name="\${1}" id="\${2:$1}" value="\${3}" />\${4}
  528. snippet input:range
  529. <input type="range" name="\${1}" id="\${2:$1}" value="\${3}" />\${4}
  530. snippet input:reset
  531. <input type="reset" name="\${1}" id="\${2:$1}" value="\${3}" />\${4}
  532. snippet input:search
  533. <input type="search" name="\${1}" id="\${2:$1}" value="\${3}" />\${4}
  534. snippet input:time
  535. <input type="time" name="\${1}" id="\${2:$1}" value="\${3}" />\${4}
  536. snippet input:url
  537. <input type="url" name="\${1}" id="\${2:$1}" value="\${3}" />\${4}
  538. snippet input:week
  539. <input type="week" name="\${1}" id="\${2:$1}" value="\${3}" />\${4}
  540. snippet ins
  541. <ins>\${1}</ins>
  542. snippet kbd
  543. <kbd>\${1}</kbd>
  544. snippet keygen
  545. <keygen>\${1}</keygen>
  546. snippet label
  547. <label for="\${2:$1}">\${1}</label>
  548. snippet label:i
  549. <label for="\${2:$1}">\${1}</label>
  550. <input type="\${3:text/submit/hidden/button}" name="\${4:$2}" id="\${5:$2}" value="\${6}" />\${7}
  551. snippet label:s
  552. <label for="\${2:$1}">\${1}</label>
  553. <select name="\${3:$2}" id="\${4:$2}">
  554. <option value="\${5}">\${6:$5}</option>
  555. </select>
  556. snippet legend
  557. <legend>\${1}</legend>
  558. snippet legend+
  559. <legend><span>\${1}</span></legend>
  560. snippet li
  561. <li>\${1}</li>
  562. snippet li.
  563. <li class="\${1}">\${2}</li>
  564. snippet li+
  565. <li>\${1}</li>
  566. li+\${2}
  567. snippet lia
  568. <li><a href="\${2:#}">\${1}</a></li>
  569. snippet lia+
  570. <li><a href="\${2:#}">\${1}</a></li>
  571. lia+\${3}
  572. snippet link
  573. <link rel="\${1}" href="\${2}" title="\${3}" type="\${4}" />\${5}
  574. snippet link:atom
  575. <link rel="alternate" href="\${1:atom.xml}" title="Atom" type="application/atom+xml" />\${2}
  576. snippet link:css
  577. <link rel="stylesheet" href="\${2:style.css}" type="text/css" media="\${3:all}" />\${4}
  578. snippet link:favicon
  579. <link rel="shortcut icon" href="\${1:favicon.ico}" type="image/x-icon" />\${2}
  580. snippet link:rss
  581. <link rel="alternate" href="\${1:rss.xml}" title="RSS" type="application/atom+xml" />\${2}
  582. snippet link:touch
  583. <link rel="apple-touch-icon" href="\${1:favicon.png}" />\${2}
  584. snippet map
  585. <map name="\${1}">
  586. \${2}
  587. </map>
  588. snippet map.
  589. <map class="\${1}" name="\${2}">
  590. \${3}
  591. </map>
  592. snippet map#
  593. <map name="\${1}" id="\${2:$1}>
  594. \${3}
  595. </map>
  596. snippet map+
  597. <map name="\${1}">
  598. <area shape="\${2}" coords="\${3}" href="\${4}" alt="\${5}" />\${6}
  599. </map>\${7}
  600. snippet mark
  601. <mark>\${1}</mark>
  602. snippet menu
  603. <menu>
  604. \${1}
  605. </menu>
  606. snippet menu:c
  607. <menu type="context">
  608. \${1}
  609. </menu>
  610. snippet menu:t
  611. <menu type="toolbar">
  612. \${1}
  613. </menu>
  614. snippet meta
  615. <meta http-equiv="\${1}" content="\${2}" />\${3}
  616. snippet meta:compat
  617. <meta http-equiv="X-UA-Compatible" content="IE=\${1:7,8,edge}" />\${3}
  618. snippet meta:refresh
  619. <meta http-equiv="refresh" content="text/html;charset=UTF-8" />\${3}
  620. snippet meta:utf
  621. <meta http-equiv="content-type" content="text/html;charset=UTF-8" />\${3}
  622. snippet meter
  623. <meter>\${1}</meter>
  624. snippet nav
  625. <nav>
  626. \${1}
  627. </nav>
  628. snippet nav.
  629. <nav class="\${1}">
  630. \${2}
  631. </nav>
  632. snippet nav#
  633. <nav id="\${1}">
  634. \${2}
  635. </nav>
  636. snippet noscript
  637. <noscript>
  638. \${1}
  639. </noscript>
  640. snippet object
  641. <object data="\${1}" type="\${2}">
  642. \${3}
  643. </object>\${4}
  644. # Embed QT Movie
  645. snippet movie
  646. <object width="$2" height="$3" classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B"
  647. codebase="http://www.apple.com/qtactivex/qtplugin.cab">
  648. <param name="src" value="$1" />
  649. <param name="controller" value="$4" />
  650. <param name="autoplay" value="$5" />
  651. <embed src="\${1:movie.mov}"
  652. width="\${2:320}" height="\${3:240}"
  653. controller="\${4:true}" autoplay="\${5:true}"
  654. scale="tofit" cache="true"
  655. pluginspage="http://www.apple.com/quicktime/download/" />
  656. </object>\${6}
  657. snippet ol
  658. <ol>
  659. \${1}
  660. </ol>
  661. snippet ol.
  662. <ol class="\${1}>
  663. \${2}
  664. </ol>
  665. snippet ol#
  666. <ol id="\${1}>
  667. \${2}
  668. </ol>
  669. snippet ol+
  670. <ol>
  671. <li>\${1}</li>
  672. li+\${2}
  673. </ol>
  674. snippet opt
  675. <option value="\${1}">\${2:$1}</option>
  676. snippet opt+
  677. <option value="\${1}">\${2:$1}</option>
  678. opt+\${3}
  679. snippet optt
  680. <option>\${1}</option>
  681. snippet optgroup
  682. <optgroup>
  683. <option value="\${1}">\${2:$1}</option>
  684. opt+\${3}
  685. </optgroup>
  686. snippet output
  687. <output>\${1}</output>
  688. snippet p
  689. <p>\${1}</p>
  690. snippet param
  691. <param name="\${1}" value="\${2}" />\${3}
  692. snippet pre
  693. <pre>
  694. \${1}
  695. </pre>
  696. snippet progress
  697. <progress>\${1}</progress>
  698. snippet q
  699. <q>\${1}</q>
  700. snippet rp
  701. <rp>\${1}</rp>
  702. snippet rt
  703. <rt>\${1}</rt>
  704. snippet ruby
  705. <ruby>
  706. <rp><rt>\${1}</rt></rp>
  707. </ruby>
  708. snippet s
  709. <s>\${1}</s>
  710. snippet samp
  711. <samp>
  712. \${1}
  713. </samp>
  714. snippet script
  715. <script type="text/javascript" charset="utf-8">
  716. \${1}
  717. <\/script>
  718. snippet scriptsrc
  719. <script src="\${1}.js" type="text/javascript" charset="utf-8"><\/script>
  720. snippet newscript
  721. <script type="application/javascript" charset="utf-8">
  722. \${1}
  723. <\/script>
  724. snippet newscriptsrc
  725. <script src="\${1}.js" type="application/javascript" charset="utf-8"><\/script>
  726. snippet section
  727. <section>
  728. \${1}
  729. </section>
  730. snippet section.
  731. <section class="\${1}">
  732. \${2}
  733. </section>
  734. snippet section#
  735. <section id="\${1}">
  736. \${2}
  737. </section>
  738. snippet select
  739. <select name="\${1}" id="\${2:$1}">
  740. \${3}
  741. </select>
  742. snippet select.
  743. <select name="\${1}" id="\${2:$1}" class="\${3}>
  744. \${4}
  745. </select>
  746. snippet select+
  747. <select name="\${1}" id="\${2:$1}">
  748. <option value="\${3}">\${4:$3}</option>
  749. opt+\${5}
  750. </select>
  751. snippet small
  752. <small>\${1}</small>
  753. snippet source
  754. <source src="\${1}" type="\${2}" media="\${3}" />
  755. snippet span
  756. <span>\${1}</span>
  757. snippet strong
  758. <strong>\${1}</strong>
  759. snippet style
  760. <style type="text/css" media="\${1:all}">
  761. \${2}
  762. </style>
  763. snippet sub
  764. <sub>\${1}</sub>
  765. snippet summary
  766. <summary>
  767. \${1}
  768. </summary>
  769. snippet sup
  770. <sup>\${1}</sup>
  771. snippet table
  772. <table border="\${1:0}">
  773. \${2}
  774. </table>
  775. snippet table.
  776. <table class="\${1}" border="\${2:0}">
  777. \${3}
  778. </table>
  779. snippet table#
  780. <table id="\${1}" border="\${2:0}">
  781. \${3}
  782. </table>
  783. snippet tbody
  784. <tbody>
  785. \${1}
  786. </tbody>
  787. snippet td
  788. <td>\${1}</td>
  789. snippet td.
  790. <td class="\${1}">\${2}</td>
  791. snippet td#
  792. <td id="\${1}">\${2}</td>
  793. snippet td+
  794. <td>\${1}</td>
  795. td+\${2}
  796. snippet textarea
  797. <textarea name="\${1}" id=\${2:$1} rows="\${3:8}" cols="\${4:40}">\${5}</textarea>\${6}
  798. snippet tfoot
  799. <tfoot>
  800. \${1}
  801. </tfoot>
  802. snippet th
  803. <th>\${1}</th>
  804. snippet th.
  805. <th class="\${1}">\${2}</th>
  806. snippet th#
  807. <th id="\${1}">\${2}</th>
  808. snippet th+
  809. <th>\${1}</th>
  810. th+\${2}
  811. snippet thead
  812. <thead>
  813. \${1}
  814. </thead>
  815. snippet time
  816. <time datetime="\${1}" pubdate="\${2:$1}>\${3:$1}</time>
  817. snippet title
  818. <title>\${1:\`substitute(Filename('', 'Page Title'), '^.', '\\u&', '')\`}</title>
  819. snippet tr
  820. <tr>
  821. \${1}
  822. </tr>
  823. snippet tr+
  824. <tr>
  825. <td>\${1}</td>
  826. td+\${2}
  827. </tr>
  828. snippet track
  829. <track src="\${1}" srclang="\${2}" label="\${3}" default="\${4:default}>\${5}</track>\${6}
  830. snippet ul
  831. <ul>
  832. \${1}
  833. </ul>
  834. snippet ul.
  835. <ul class="\${1}">
  836. \${2}
  837. </ul>
  838. snippet ul#
  839. <ul id="\${1}">
  840. \${2}
  841. </ul>
  842. snippet ul+
  843. <ul>
  844. <li>\${1}</li>
  845. li+\${2}
  846. </ul>
  847. snippet var
  848. <var>\${1}</var>
  849. snippet video
  850. <video src="\${1}" height="\${2}" width="\${3}" preload="\${5:none}" autoplay="\${6:autoplay}">\${7}</video>\${8}
  851. snippet wbr
  852. <wbr />\${1}
  853. `}),ace.define("ace/snippets/html",["require","exports","module","ace/snippets/html.snippets"],function(n,t,e){t.snippetText=n("./html.snippets"),t.scope="html"}),function(){ace.require(["ace/snippets/html"],function(n){p&&(p.exports=n)})}()})($);var a=$.exports;const o=l(a),c=r({__proto__:null,default:o},[a]);export{c as h};