liquid-7135c3a2.js 19 KB

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