123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882 |
- import{g as l}from"./index-b2e76ed2.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=`
- # liquid specific snippets
- snippet ife
- {% if \${1:condition} %}
- {% else %}
- {% endif %}
- snippet if
- {% if \${1:condition} %}
-
- {% endif %}
- snippet for
- {% for in \${1:iterator} %}
- {% endfor %}
- snippet capture
- {% capture \${1} %}
- {% endcapture %}
- snippet comment
- {% comment %}
- \${1:comment}
- {% endcomment %}
- # Include html.snippets
- # Some useful Unicode entities
- # Non-Breaking Space
- snippet nbs
-
- # ←
- snippet left
- ←
- # →
- snippet right
- →
- # ↑
- snippet up
- ↑
- # ↓
- snippet down
- ↓
- # ↩
- snippet return
- ↩
- # ⇤
- snippet backtab
- ⇤
- # ⇥
- snippet tab
- ⇥
- # ⇧
- snippet shift
- ⇧
- # ⌃
- snippet ctrl
- ⌃
- # ⌅
- snippet enter
- ⌅
- # ⌘
- snippet cmd
- ⌘
- # ⌥
- snippet option
- ⌥
- # ⌦
- snippet delete
- ⌦
- # ⌫
- snippet backspace
- ⌫
- # ⎋
- snippet esc
- ⎋
- # Generic Doctype
- snippet doctype HTML 4.01 Strict
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
- "http://www.w3.org/TR/html4/strict.dtd">
- snippet doctype HTML 4.01 Transitional
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
- "http://www.w3.org/TR/html4/loose.dtd">
- snippet doctype HTML 5
- <!DOCTYPE HTML>
- snippet doctype XHTML 1.0 Frameset
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
- snippet doctype XHTML 1.0 Strict
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
- snippet doctype XHTML 1.0 Transitional
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- snippet doctype XHTML 1.1
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
- "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
- # HTML Doctype 4.01 Strict
- snippet docts
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
- "http://www.w3.org/TR/html4/strict.dtd">
- # HTML Doctype 4.01 Transitional
- snippet doct
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
- "http://www.w3.org/TR/html4/loose.dtd">
- # HTML Doctype 5
- snippet doct5
- <!DOCTYPE html>
- # XHTML Doctype 1.0 Frameset
- snippet docxf
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN"
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
- # XHTML Doctype 1.0 Strict
- snippet docxs
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
- # XHTML Doctype 1.0 Transitional
- snippet docxt
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- # XHTML Doctype 1.1
- snippet docx
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
- "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
- # html5shiv
- snippet html5shiv
- <!--[if lte IE 8]>
- <script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.min.js"><\/script>
- <![endif]-->
- snippet html5printshiv
- <!--[if lte IE 8]>
- <script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv-printshiv.min.js"><\/script>
- <![endif]-->
- # Attributes
- snippet attr
- \${1:attribute}="\${2:property}"
- snippet attr+
- \${1:attribute}="\${2:property}" attr+\${3}
- snippet .
- class="\${1}"\${2}
- snippet #
- id="\${1}"\${2}
- snippet alt
- alt="\${1}"\${2}
- snippet charset
- charset="\${1:utf-8}"\${2}
- snippet data
- data-\${1}="\${2:$1}"\${3}
- snippet for
- for="\${1}"\${2}
- snippet height
- height="\${1}"\${2}
- snippet href
- href="\${1:#}"\${2}
- snippet lang
- lang="\${1:en}"\${2}
- snippet media
- media="\${1}"\${2}
- snippet name
- name="\${1}"\${2}
- snippet rel
- rel="\${1}"\${2}
- snippet scope
- scope="\${1:row}"\${2}
- snippet src
- src="\${1}"\${2}
- snippet title=
- title="\${1}"\${2}
- snippet type
- type="\${1}"\${2}
- snippet value
- value="\${1}"\${2}
- snippet width
- width="\${1}"\${2}
- # Elements
- snippet a
- <a href="\${1:#}">\${2:$1}</a>
- snippet a.
- <a class="\${1}" href="\${2:#}">\${3:$1}</a>
- snippet a#
- <a id="\${1}" href="\${2:#}">\${3:$1}</a>
- snippet a:ext
- <a href="http://\${1:example.com}">\${2:$1}</a>
- snippet a:mail
- <a href="mailto:\${1:joe@example.com}?subject=\${2:feedback}">\${3:email me}</a>
- snippet abbr
- <abbr title="\${1}">\${2}</abbr>
- snippet address
- <address>
- \${1}
- </address>
- snippet area
- <area shape="\${1:rect}" coords="\${2}" href="\${3}" alt="\${4}" />
- snippet area+
- <area shape="\${1:rect}" coords="\${2}" href="\${3}" alt="\${4}" />
- area+\${5}
- snippet area:c
- <area shape="circle" coords="\${1}" href="\${2}" alt="\${3}" />
- snippet area:d
- <area shape="default" coords="\${1}" href="\${2}" alt="\${3}" />
- snippet area:p
- <area shape="poly" coords="\${1}" href="\${2}" alt="\${3}" />
- snippet area:r
- <area shape="rect" coords="\${1}" href="\${2}" alt="\${3}" />
- snippet article
- <article>
- \${1}
- </article>
- snippet article.
- <article class="\${1}">
- \${2}
- </article>
- snippet article#
- <article id="\${1}">
- \${2}
- </article>
- snippet aside
- <aside>
- \${1}
- </aside>
- snippet aside.
- <aside class="\${1}">
- \${2}
- </aside>
- snippet aside#
- <aside id="\${1}">
- \${2}
- </aside>
- snippet audio
- <audio src="\${1}>\${2}</audio>
- snippet b
- <b>\${1}</b>
- snippet base
- <base href="\${1}" target="\${2}" />
- snippet bdi
- <bdi>\${1}</bdo>
- snippet bdo
- <bdo dir="\${1}">\${2}</bdo>
- snippet bdo:l
- <bdo dir="ltr">\${1}</bdo>
- snippet bdo:r
- <bdo dir="rtl">\${1}</bdo>
- snippet blockquote
- <blockquote>
- \${1}
- </blockquote>
- snippet body
- <body>
- \${1}
- </body>
- snippet br
- <br />\${1}
- snippet button
- <button type="\${1:submit}">\${2}</button>
- snippet button.
- <button class="\${1:button}" type="\${2:submit}">\${3}</button>
- snippet button#
- <button id="\${1}" type="\${2:submit}">\${3}</button>
- snippet button:s
- <button type="submit">\${1}</button>
- snippet button:r
- <button type="reset">\${1}</button>
- snippet canvas
- <canvas>
- \${1}
- </canvas>
- snippet caption
- <caption>\${1}</caption>
- snippet cite
- <cite>\${1}</cite>
- snippet code
- <code>\${1}</code>
- snippet col
- <col />\${1}
- snippet col+
- <col />
- col+\${1}
- snippet colgroup
- <colgroup>
- \${1}
- </colgroup>
- snippet colgroup+
- <colgroup>
- <col />
- col+\${1}
- </colgroup>
- snippet command
- <command type="command" label="\${1}" icon="\${2}" />
- snippet command:c
- <command type="checkbox" label="\${1}" icon="\${2}" />
- snippet command:r
- <command type="radio" radiogroup="\${1}" label="\${2}" icon="\${3}" />
- snippet datagrid
- <datagrid>
- \${1}
- </datagrid>
- snippet datalist
- <datalist>
- \${1}
- </datalist>
- snippet datatemplate
- <datatemplate>
- \${1}
- </datatemplate>
- snippet dd
- <dd>\${1}</dd>
- snippet dd.
- <dd class="\${1}">\${2}</dd>
- snippet dd#
- <dd id="\${1}">\${2}</dd>
- snippet del
- <del>\${1}</del>
- snippet details
- <details>\${1}</details>
- snippet dfn
- <dfn>\${1}</dfn>
- snippet dialog
- <dialog>
- \${1}
- </dialog>
- snippet div
- <div>
- \${1}
- </div>
- snippet div.
- <div class="\${1}">
- \${2}
- </div>
- snippet div#
- <div id="\${1}">
- \${2}
- </div>
- snippet dl
- <dl>
- \${1}
- </dl>
- snippet dl.
- <dl class="\${1}">
- \${2}
- </dl>
- snippet dl#
- <dl id="\${1}">
- \${2}
- </dl>
- snippet dl+
- <dl>
- <dt>\${1}</dt>
- <dd>\${2}</dd>
- dt+\${3}
- </dl>
- snippet dt
- <dt>\${1}</dt>
- snippet dt.
- <dt class="\${1}">\${2}</dt>
- snippet dt#
- <dt id="\${1}">\${2}</dt>
- snippet dt+
- <dt>\${1}</dt>
- <dd>\${2}</dd>
- dt+\${3}
- snippet em
- <em>\${1}</em>
- snippet embed
- <embed src=\${1} type="\${2} />
- snippet fieldset
- <fieldset>
- \${1}
- </fieldset>
- snippet fieldset.
- <fieldset class="\${1}">
- \${2}
- </fieldset>
- snippet fieldset#
- <fieldset id="\${1}">
- \${2}
- </fieldset>
- snippet fieldset+
- <fieldset>
- <legend><span>\${1}</span></legend>
- \${2}
- </fieldset>
- fieldset+\${3}
- snippet figcaption
- <figcaption>\${1}</figcaption>
- snippet figure
- <figure>\${1}</figure>
- snippet footer
- <footer>
- \${1}
- </footer>
- snippet footer.
- <footer class="\${1}">
- \${2}
- </footer>
- snippet footer#
- <footer id="\${1}">
- \${2}
- </footer>
- snippet form
- <form action="\${1}" method="\${2:get}" accept-charset="utf-8">
- \${3}
- </form>
- snippet form.
- <form class="\${1}" action="\${2}" method="\${3:get}" accept-charset="utf-8">
- \${4}
- </form>
- snippet form#
- <form id="\${1}" action="\${2}" method="\${3:get}" accept-charset="utf-8">
- \${4}
- </form>
- snippet h1
- <h1>\${1}</h1>
- snippet h1.
- <h1 class="\${1}">\${2}</h1>
- snippet h1#
- <h1 id="\${1}">\${2}</h1>
- snippet h2
- <h2>\${1}</h2>
- snippet h2.
- <h2 class="\${1}">\${2}</h2>
- snippet h2#
- <h2 id="\${1}">\${2}</h2>
- snippet h3
- <h3>\${1}</h3>
- snippet h3.
- <h3 class="\${1}">\${2}</h3>
- snippet h3#
- <h3 id="\${1}">\${2}</h3>
- snippet h4
- <h4>\${1}</h4>
- snippet h4.
- <h4 class="\${1}">\${2}</h4>
- snippet h4#
- <h4 id="\${1}">\${2}</h4>
- snippet h5
- <h5>\${1}</h5>
- snippet h5.
- <h5 class="\${1}">\${2}</h5>
- snippet h5#
- <h5 id="\${1}">\${2}</h5>
- snippet h6
- <h6>\${1}</h6>
- snippet h6.
- <h6 class="\${1}">\${2}</h6>
- snippet h6#
- <h6 id="\${1}">\${2}</h6>
- snippet head
- <head>
- <meta http-equiv="content-type" content="text/html; charset=utf-8" />
- <title>\${1:\`substitute(Filename('', 'Page Title'), '^.', '\\u&', '')\`}</title>
- \${2}
- </head>
- snippet header
- <header>
- \${1}
- </header>
- snippet header.
- <header class="\${1}">
- \${2}
- </header>
- snippet header#
- <header id="\${1}">
- \${2}
- </header>
- snippet hgroup
- <hgroup>
- \${1}
- </hgroup>
- snippet hgroup.
- <hgroup class="\${1}>
- \${2}
- </hgroup>
- snippet hr
- <hr />\${1}
- snippet html
- <html>
- \${1}
- </html>
- snippet xhtml
- <html xmlns="http://www.w3.org/1999/xhtml">
- \${1}
- </html>
- snippet html5
- <!DOCTYPE html>
- <html>
- <head>
- <meta http-equiv="content-type" content="text/html; charset=utf-8" />
- <title>\${1:\`substitute(Filename('', 'Page Title'), '^.', '\\u&', '')\`}</title>
- \${2:meta}
- </head>
- <body>
- \${3:body}
- </body>
- </html>
- snippet xhtml5
- <!DOCTYPE html>
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="content-type" content="application/xhtml+xml; charset=utf-8" />
- <title>\${1:\`substitute(Filename('', 'Page Title'), '^.', '\\u&', '')\`}</title>
- \${2:meta}
- </head>
- <body>
- \${3:body}
- </body>
- </html>
- snippet i
- <i>\${1}</i>
- snippet iframe
- <iframe src="\${1}" frameborder="0"></iframe>\${2}
- snippet iframe.
- <iframe class="\${1}" src="\${2}" frameborder="0"></iframe>\${3}
- snippet iframe#
- <iframe id="\${1}" src="\${2}" frameborder="0"></iframe>\${3}
- snippet img
- <img src="\${1}" alt="\${2}" />\${3}
- snippet img.
- <img class="\${1}" src="\${2}" alt="\${3}" />\${4}
- snippet img#
- <img id="\${1}" src="\${2}" alt="\${3}" />\${4}
- snippet input
- <input type="\${1:text/submit/hidden/button/image}" name="\${2}" id="\${3:$2}" value="\${4}" />\${5}
- snippet input.
- <input class="\${1}" type="\${2:text/submit/hidden/button/image}" name="\${3}" id="\${4:$3}" value="\${5}" />\${6}
- snippet input:text
- <input type="text" name="\${1}" id="\${2:$1}" value="\${3}" />\${4}
- snippet input:submit
- <input type="submit" name="\${1}" id="\${2:$1}" value="\${3}" />\${4}
- snippet input:hidden
- <input type="hidden" name="\${1}" id="\${2:$1}" value="\${3}" />\${4}
- snippet input:button
- <input type="button" name="\${1}" id="\${2:$1}" value="\${3}" />\${4}
- snippet input:image
- <input type="image" name="\${1}" id="\${2:$1}" src="\${3}" alt="\${4}" />\${5}
- snippet input:checkbox
- <input type="checkbox" name="\${1}" id="\${2:$1}" />\${3}
- snippet input:radio
- <input type="radio" name="\${1}" id="\${2:$1}" />\${3}
- snippet input:color
- <input type="color" name="\${1}" id="\${2:$1}" value="\${3}" />\${4}
- snippet input:date
- <input type="date" name="\${1}" id="\${2:$1}" value="\${3}" />\${4}
- snippet input:datetime
- <input type="datetime" name="\${1}" id="\${2:$1}" value="\${3}" />\${4}
- snippet input:datetime-local
- <input type="datetime-local" name="\${1}" id="\${2:$1}" value="\${3}" />\${4}
- snippet input:email
- <input type="email" name="\${1}" id="\${2:$1}" value="\${3}" />\${4}
- snippet input:file
- <input type="file" name="\${1}" id="\${2:$1}" value="\${3}" />\${4}
- snippet input:month
- <input type="month" name="\${1}" id="\${2:$1}" value="\${3}" />\${4}
- snippet input:number
- <input type="number" name="\${1}" id="\${2:$1}" value="\${3}" />\${4}
- snippet input:password
- <input type="password" name="\${1}" id="\${2:$1}" value="\${3}" />\${4}
- snippet input:range
- <input type="range" name="\${1}" id="\${2:$1}" value="\${3}" />\${4}
- snippet input:reset
- <input type="reset" name="\${1}" id="\${2:$1}" value="\${3}" />\${4}
- snippet input:search
- <input type="search" name="\${1}" id="\${2:$1}" value="\${3}" />\${4}
- snippet input:time
- <input type="time" name="\${1}" id="\${2:$1}" value="\${3}" />\${4}
- snippet input:url
- <input type="url" name="\${1}" id="\${2:$1}" value="\${3}" />\${4}
- snippet input:week
- <input type="week" name="\${1}" id="\${2:$1}" value="\${3}" />\${4}
- snippet ins
- <ins>\${1}</ins>
- snippet kbd
- <kbd>\${1}</kbd>
- snippet keygen
- <keygen>\${1}</keygen>
- snippet label
- <label for="\${2:$1}">\${1}</label>
- snippet label:i
- <label for="\${2:$1}">\${1}</label>
- <input type="\${3:text/submit/hidden/button}" name="\${4:$2}" id="\${5:$2}" value="\${6}" />\${7}
- snippet label:s
- <label for="\${2:$1}">\${1}</label>
- <select name="\${3:$2}" id="\${4:$2}">
- <option value="\${5}">\${6:$5}</option>
- </select>
- snippet legend
- <legend>\${1}</legend>
- snippet legend+
- <legend><span>\${1}</span></legend>
- snippet li
- <li>\${1}</li>
- snippet li.
- <li class="\${1}">\${2}</li>
- snippet li+
- <li>\${1}</li>
- li+\${2}
- snippet lia
- <li><a href="\${2:#}">\${1}</a></li>
- snippet lia+
- <li><a href="\${2:#}">\${1}</a></li>
- lia+\${3}
- snippet link
- <link rel="\${1}" href="\${2}" title="\${3}" type="\${4}" />\${5}
- snippet link:atom
- <link rel="alternate" href="\${1:atom.xml}" title="Atom" type="application/atom+xml" />\${2}
- snippet link:css
- <link rel="stylesheet" href="\${2:style.css}" type="text/css" media="\${3:all}" />\${4}
- snippet link:favicon
- <link rel="shortcut icon" href="\${1:favicon.ico}" type="image/x-icon" />\${2}
- snippet link:rss
- <link rel="alternate" href="\${1:rss.xml}" title="RSS" type="application/atom+xml" />\${2}
- snippet link:touch
- <link rel="apple-touch-icon" href="\${1:favicon.png}" />\${2}
- snippet map
- <map name="\${1}">
- \${2}
- </map>
- snippet map.
- <map class="\${1}" name="\${2}">
- \${3}
- </map>
- snippet map#
- <map name="\${1}" id="\${2:$1}>
- \${3}
- </map>
- snippet map+
- <map name="\${1}">
- <area shape="\${2}" coords="\${3}" href="\${4}" alt="\${5}" />\${6}
- </map>\${7}
- snippet mark
- <mark>\${1}</mark>
- snippet menu
- <menu>
- \${1}
- </menu>
- snippet menu:c
- <menu type="context">
- \${1}
- </menu>
- snippet menu:t
- <menu type="toolbar">
- \${1}
- </menu>
- snippet meta
- <meta http-equiv="\${1}" content="\${2}" />\${3}
- snippet meta:compat
- <meta http-equiv="X-UA-Compatible" content="IE=\${1:7,8,edge}" />\${3}
- snippet meta:refresh
- <meta http-equiv="refresh" content="text/html;charset=UTF-8" />\${3}
- snippet meta:utf
- <meta http-equiv="content-type" content="text/html;charset=UTF-8" />\${3}
- snippet meter
- <meter>\${1}</meter>
- snippet nav
- <nav>
- \${1}
- </nav>
- snippet nav.
- <nav class="\${1}">
- \${2}
- </nav>
- snippet nav#
- <nav id="\${1}">
- \${2}
- </nav>
- snippet noscript
- <noscript>
- \${1}
- </noscript>
- snippet object
- <object data="\${1}" type="\${2}">
- \${3}
- </object>\${4}
- # Embed QT Movie
- snippet movie
- <object width="$2" height="$3" classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B"
- codebase="http://www.apple.com/qtactivex/qtplugin.cab">
- <param name="src" value="$1" />
- <param name="controller" value="$4" />
- <param name="autoplay" value="$5" />
- <embed src="\${1:movie.mov}"
- width="\${2:320}" height="\${3:240}"
- controller="\${4:true}" autoplay="\${5:true}"
- scale="tofit" cache="true"
- pluginspage="http://www.apple.com/quicktime/download/" />
- </object>\${6}
- snippet ol
- <ol>
- \${1}
- </ol>
- snippet ol.
- <ol class="\${1}>
- \${2}
- </ol>
- snippet ol#
- <ol id="\${1}>
- \${2}
- </ol>
- snippet ol+
- <ol>
- <li>\${1}</li>
- li+\${2}
- </ol>
- snippet opt
- <option value="\${1}">\${2:$1}</option>
- snippet opt+
- <option value="\${1}">\${2:$1}</option>
- opt+\${3}
- snippet optt
- <option>\${1}</option>
- snippet optgroup
- <optgroup>
- <option value="\${1}">\${2:$1}</option>
- opt+\${3}
- </optgroup>
- snippet output
- <output>\${1}</output>
- snippet p
- <p>\${1}</p>
- snippet param
- <param name="\${1}" value="\${2}" />\${3}
- snippet pre
- <pre>
- \${1}
- </pre>
- snippet progress
- <progress>\${1}</progress>
- snippet q
- <q>\${1}</q>
- snippet rp
- <rp>\${1}</rp>
- snippet rt
- <rt>\${1}</rt>
- snippet ruby
- <ruby>
- <rp><rt>\${1}</rt></rp>
- </ruby>
- snippet s
- <s>\${1}</s>
- snippet samp
- <samp>
- \${1}
- </samp>
- snippet script
- <script type="text/javascript" charset="utf-8">
- \${1}
- <\/script>
- snippet scriptsrc
- <script src="\${1}.js" type="text/javascript" charset="utf-8"><\/script>
- snippet newscript
- <script type="application/javascript" charset="utf-8">
- \${1}
- <\/script>
- snippet newscriptsrc
- <script src="\${1}.js" type="application/javascript" charset="utf-8"><\/script>
- snippet section
- <section>
- \${1}
- </section>
- snippet section.
- <section class="\${1}">
- \${2}
- </section>
- snippet section#
- <section id="\${1}">
- \${2}
- </section>
- snippet select
- <select name="\${1}" id="\${2:$1}">
- \${3}
- </select>
- snippet select.
- <select name="\${1}" id="\${2:$1}" class="\${3}>
- \${4}
- </select>
- snippet select+
- <select name="\${1}" id="\${2:$1}">
- <option value="\${3}">\${4:$3}</option>
- opt+\${5}
- </select>
- snippet small
- <small>\${1}</small>
- snippet source
- <source src="\${1}" type="\${2}" media="\${3}" />
- snippet span
- <span>\${1}</span>
- snippet strong
- <strong>\${1}</strong>
- snippet style
- <style type="text/css" media="\${1:all}">
- \${2}
- </style>
- snippet sub
- <sub>\${1}</sub>
- snippet summary
- <summary>
- \${1}
- </summary>
- snippet sup
- <sup>\${1}</sup>
- snippet table
- <table border="\${1:0}">
- \${2}
- </table>
- snippet table.
- <table class="\${1}" border="\${2:0}">
- \${3}
- </table>
- snippet table#
- <table id="\${1}" border="\${2:0}">
- \${3}
- </table>
- snippet tbody
- <tbody>
- \${1}
- </tbody>
- snippet td
- <td>\${1}</td>
- snippet td.
- <td class="\${1}">\${2}</td>
- snippet td#
- <td id="\${1}">\${2}</td>
- snippet td+
- <td>\${1}</td>
- td+\${2}
- snippet textarea
- <textarea name="\${1}" id=\${2:$1} rows="\${3:8}" cols="\${4:40}">\${5}</textarea>\${6}
- snippet tfoot
- <tfoot>
- \${1}
- </tfoot>
- snippet th
- <th>\${1}</th>
- snippet th.
- <th class="\${1}">\${2}</th>
- snippet th#
- <th id="\${1}">\${2}</th>
- snippet th+
- <th>\${1}</th>
- th+\${2}
- snippet thead
- <thead>
- \${1}
- </thead>
- snippet time
- <time datetime="\${1}" pubdate="\${2:$1}>\${3:$1}</time>
- snippet title
- <title>\${1:\`substitute(Filename('', 'Page Title'), '^.', '\\u&', '')\`}</title>
- snippet tr
- <tr>
- \${1}
- </tr>
- snippet tr+
- <tr>
- <td>\${1}</td>
- td+\${2}
- </tr>
- snippet track
- <track src="\${1}" srclang="\${2}" label="\${3}" default="\${4:default}>\${5}</track>\${6}
- snippet ul
- <ul>
- \${1}
- </ul>
- snippet ul.
- <ul class="\${1}">
- \${2}
- </ul>
- snippet ul#
- <ul id="\${1}">
- \${2}
- </ul>
- snippet ul+
- <ul>
- <li>\${1}</li>
- li+\${2}
- </ul>
- snippet var
- <var>\${1}</var>
- snippet video
- <video src="\${1} height="\${2}" width="\${3}" preload="\${5:none}" autoplay="\${6:autoplay}>\${7}</video>\${8}
- snippet wbr
- <wbr />\${1}
- `}),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};
|