├── LICENSE ├── README.md ├── plugin └── woocommerce-to-wechatapp-mini │ ├── LICENSE.txt │ ├── assets │ ├── css │ │ └── menu.css │ └── fonts │ │ ├── W2W.eot │ │ ├── W2W.svg │ │ ├── W2W.ttf │ │ └── W2W.woff │ ├── includes │ ├── abstract │ │ ├── abstract-wc-rest-posts-controller.php │ │ └── abstract-wc-rest-terms-controller.php │ ├── api │ │ ├── class-w2w-rest-cart-controller.php │ │ ├── class-w2w-rest-customers-controller.php │ │ ├── class-w2w-rest-orders-controller.php │ │ ├── class-w2w-rest-payment-controller.php │ │ ├── class-w2w-rest-product-categories-controller.php │ │ ├── class-w2w-rest-products-controller.php │ │ └── class-w2w-rest-store-controller.php │ ├── class-w2w-template-message.php │ ├── class-w2w-util.php │ ├── class-w2w-wc-api.php │ ├── class-w2w-wc-gateway-wechatpay.php │ ├── class-w2w-weixin-api.php │ └── wxpay │ │ ├── class.WxPay.Api.php │ │ ├── class.WxPay.Config.php │ │ ├── class.WxPay.Data.php │ │ ├── class.WxPay.Exception.php │ │ ├── class.WxPay.JsApiPay.php │ │ └── class.WxPay.Notify.php │ ├── templates │ └── settings.php │ ├── vendor │ ├── html2wxml │ │ ├── class.ToWXML.php │ │ └── vendor │ │ │ ├── Highlight │ │ │ ├── Autoloader.php │ │ │ ├── Highlighter.php │ │ │ ├── JsonRef.php │ │ │ ├── Language.php │ │ │ └── languages │ │ │ │ ├── 1c.json │ │ │ │ ├── abnf.json │ │ │ │ ├── accesslog.json │ │ │ │ ├── actionscript.json │ │ │ │ ├── ada.json │ │ │ │ ├── apache.json │ │ │ │ ├── applescript.json │ │ │ │ ├── arduino.json │ │ │ │ ├── armasm.json │ │ │ │ ├── asciidoc.json │ │ │ │ ├── aspectj.json │ │ │ │ ├── autohotkey.json │ │ │ │ ├── autoit.json │ │ │ │ ├── avrasm.json │ │ │ │ ├── awk.json │ │ │ │ ├── axapta.json │ │ │ │ ├── bash.json │ │ │ │ ├── basic.json │ │ │ │ ├── bnf.json │ │ │ │ ├── brainfuck.json │ │ │ │ ├── cal.json │ │ │ │ ├── capnproto.json │ │ │ │ ├── ceylon.json │ │ │ │ ├── clean.json │ │ │ │ ├── clojure-repl.json │ │ │ │ ├── clojure.json │ │ │ │ ├── cmake.json │ │ │ │ ├── coffeescript.json │ │ │ │ ├── coq.json │ │ │ │ ├── cos.json │ │ │ │ ├── cpp.json │ │ │ │ ├── crmsh.json │ │ │ │ ├── crystal.json │ │ │ │ ├── cs.json │ │ │ │ ├── csp.json │ │ │ │ ├── css.json │ │ │ │ ├── d.json │ │ │ │ ├── dart.json │ │ │ │ ├── delphi.json │ │ │ │ ├── diff.json │ │ │ │ ├── django.json │ │ │ │ ├── dns.json │ │ │ │ ├── dockerfile.json │ │ │ │ ├── dos.json │ │ │ │ ├── dsconfig.json │ │ │ │ ├── dts.json │ │ │ │ ├── dust.json │ │ │ │ ├── ebnf.json │ │ │ │ ├── elixir.json │ │ │ │ ├── elm.json │ │ │ │ ├── erb.json │ │ │ │ ├── erlang-repl.json │ │ │ │ ├── erlang.json │ │ │ │ ├── excel.json │ │ │ │ ├── fix.json │ │ │ │ ├── flix.json │ │ │ │ ├── fortran.json │ │ │ │ ├── fsharp.json │ │ │ │ ├── gams.json │ │ │ │ ├── gauss.json │ │ │ │ ├── gcode.json │ │ │ │ ├── gherkin.json │ │ │ │ ├── glsl.json │ │ │ │ ├── go.json │ │ │ │ ├── golo.json │ │ │ │ ├── gradle.json │ │ │ │ ├── groovy.json │ │ │ │ ├── haml.json │ │ │ │ ├── handlebars.json │ │ │ │ ├── haskell.json │ │ │ │ ├── haxe.json │ │ │ │ ├── hsp.json │ │ │ │ ├── htmlbars.json │ │ │ │ ├── http.json │ │ │ │ ├── hy.json │ │ │ │ ├── inform7.json │ │ │ │ ├── ini.json │ │ │ │ ├── irpf90.json │ │ │ │ ├── java.json │ │ │ │ ├── javascript.json │ │ │ │ ├── jboss-cli.json │ │ │ │ ├── json.json │ │ │ │ ├── julia-repl.json │ │ │ │ ├── julia.json │ │ │ │ ├── kotlin.json │ │ │ │ ├── lasso.json │ │ │ │ ├── ldif.json │ │ │ │ ├── leaf.json │ │ │ │ ├── less.json │ │ │ │ ├── lisp.json │ │ │ │ ├── livecodeserver.json │ │ │ │ ├── livescript.json │ │ │ │ ├── llvm.json │ │ │ │ ├── lsl.json │ │ │ │ ├── lua.json │ │ │ │ ├── makefile.json │ │ │ │ ├── markdown.json │ │ │ │ ├── mathematica.json │ │ │ │ ├── matlab.json │ │ │ │ ├── maxima.json │ │ │ │ ├── mel.json │ │ │ │ ├── mercury.json │ │ │ │ ├── mipsasm.json │ │ │ │ ├── mizar.json │ │ │ │ ├── mojolicious.json │ │ │ │ ├── monkey.json │ │ │ │ ├── moonscript.json │ │ │ │ ├── n1ql.json │ │ │ │ ├── nginx.json │ │ │ │ ├── nimrod.json │ │ │ │ ├── nix.json │ │ │ │ ├── nsis.json │ │ │ │ ├── objectivec.json │ │ │ │ ├── ocaml.json │ │ │ │ ├── openscad.json │ │ │ │ ├── oxygene.json │ │ │ │ ├── parser3.json │ │ │ │ ├── perl.json │ │ │ │ ├── pf.json │ │ │ │ ├── php.json │ │ │ │ ├── pony.json │ │ │ │ ├── powershell.json │ │ │ │ ├── processing.json │ │ │ │ ├── profile.json │ │ │ │ ├── prolog.json │ │ │ │ ├── protobuf.json │ │ │ │ ├── puppet.json │ │ │ │ ├── purebasic.json │ │ │ │ ├── python.json │ │ │ │ ├── q.json │ │ │ │ ├── qml.json │ │ │ │ ├── r.json │ │ │ │ ├── rib.json │ │ │ │ ├── roboconf.json │ │ │ │ ├── routeros.json │ │ │ │ ├── rsl.json │ │ │ │ ├── ruby.json │ │ │ │ ├── ruleslanguage.json │ │ │ │ ├── rust.json │ │ │ │ ├── scala.json │ │ │ │ ├── scheme.json │ │ │ │ ├── scilab.json │ │ │ │ ├── scss.json │ │ │ │ ├── shell.json │ │ │ │ ├── smali.json │ │ │ │ ├── smalltalk.json │ │ │ │ ├── sml.json │ │ │ │ ├── sqf.json │ │ │ │ ├── sql.json │ │ │ │ ├── stan.json │ │ │ │ ├── stata.json │ │ │ │ ├── step21.json │ │ │ │ ├── stylus.json │ │ │ │ ├── subunit.json │ │ │ │ ├── swift.json │ │ │ │ ├── taggerscript.json │ │ │ │ ├── tap.json │ │ │ │ ├── tcl.json │ │ │ │ ├── tex.json │ │ │ │ ├── thrift.json │ │ │ │ ├── tp.json │ │ │ │ ├── twig.json │ │ │ │ ├── typescript.json │ │ │ │ ├── vala.json │ │ │ │ ├── vbnet.json │ │ │ │ ├── vbscript-html.json │ │ │ │ ├── vbscript.json │ │ │ │ ├── verilog.json │ │ │ │ ├── vhdl.json │ │ │ │ ├── vim.json │ │ │ │ ├── x86asm.json │ │ │ │ ├── xl.json │ │ │ │ ├── xml.json │ │ │ │ ├── xquery.json │ │ │ │ ├── yaml.json │ │ │ │ └── zephir.json │ │ │ └── Parsedown │ │ │ └── Parsedown.php │ └── plugin-update-checker-4.6 │ │ ├── .editorconfig │ │ ├── Puc │ │ ├── v4 │ │ │ └── Factory.php │ │ └── v4p6 │ │ │ ├── Autoloader.php │ │ │ ├── DebugBar │ │ │ ├── Extension.php │ │ │ ├── Panel.php │ │ │ ├── PluginExtension.php │ │ │ ├── PluginPanel.php │ │ │ └── ThemePanel.php │ │ │ ├── Factory.php │ │ │ ├── InstalledPackage.php │ │ │ ├── Metadata.php │ │ │ ├── OAuthSignature.php │ │ │ ├── Plugin │ │ │ ├── Info.php │ │ │ ├── Package.php │ │ │ ├── Ui.php │ │ │ ├── Update.php │ │ │ └── UpdateChecker.php │ │ │ ├── Scheduler.php │ │ │ ├── StateStore.php │ │ │ ├── Theme │ │ │ ├── Package.php │ │ │ ├── Update.php │ │ │ └── UpdateChecker.php │ │ │ ├── Update.php │ │ │ ├── UpdateChecker.php │ │ │ ├── UpgraderStatus.php │ │ │ ├── Utils.php │ │ │ └── Vcs │ │ │ ├── Api.php │ │ │ ├── BaseChecker.php │ │ │ ├── BitBucketApi.php │ │ │ ├── GitHubApi.php │ │ │ ├── GitLabApi.php │ │ │ ├── PluginUpdateChecker.php │ │ │ ├── Reference.php │ │ │ └── ThemeUpdateChecker.php │ │ ├── README.md │ │ ├── composer.json │ │ ├── css │ │ └── puc-debug-bar.css │ │ ├── examples │ │ ├── plugin.json │ │ └── theme.json │ │ ├── js │ │ └── debug-bar.js │ │ ├── languages │ │ ├── plugin-update-checker-cs_CZ.mo │ │ ├── plugin-update-checker-cs_CZ.po │ │ ├── plugin-update-checker-da_DK.mo │ │ ├── plugin-update-checker-da_DK.po │ │ ├── plugin-update-checker-de_DE.mo │ │ ├── plugin-update-checker-de_DE.po │ │ ├── plugin-update-checker-fa_IR.mo │ │ ├── plugin-update-checker-fa_IR.po │ │ ├── plugin-update-checker-fr_CA.mo │ │ ├── plugin-update-checker-fr_CA.po │ │ ├── plugin-update-checker-fr_FR.mo │ │ ├── plugin-update-checker-fr_FR.po │ │ ├── plugin-update-checker-hu_HU.mo │ │ ├── plugin-update-checker-hu_HU.po │ │ ├── plugin-update-checker-it_IT.mo │ │ ├── plugin-update-checker-it_IT.po │ │ ├── plugin-update-checker-ja.mo │ │ ├── plugin-update-checker-ja.po │ │ ├── plugin-update-checker-nl_BE.mo │ │ ├── plugin-update-checker-nl_BE.po │ │ ├── plugin-update-checker-nl_NL.mo │ │ ├── plugin-update-checker-nl_NL.po │ │ ├── plugin-update-checker-pt_BR.mo │ │ ├── plugin-update-checker-pt_BR.po │ │ ├── plugin-update-checker-sv_SE.mo │ │ ├── plugin-update-checker-sv_SE.po │ │ └── plugin-update-checker.pot │ │ ├── license.txt │ │ ├── plugin-update-checker.php │ │ └── vendor │ │ ├── Parsedown.php │ │ ├── ParsedownLegacy.php │ │ └── readme-parser.php │ └── woocommerce-to-wechatapp-mini.php └── wechatapp ├── LICENSE.txt ├── app.js ├── app.json ├── app.wxss ├── components ├── nav-bar │ └── dist │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss └── slider │ ├── dist │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss │ └── src │ ├── objectToStyle.js │ ├── props.js │ ├── sliderBar.js │ ├── sliderBar1.js │ ├── sliderBar2.js │ └── sliderLine.js ├── images ├── about.svg ├── add_light.svg ├── back_white_light.svg ├── cart_fill_light.png ├── cart_fill_light.svg ├── cart_light.png ├── cart_light.svg ├── cart_light_main_color.svg ├── category.png ├── category_fill.png ├── category_fill.svg ├── check.svg ├── check_white.svg ├── close.svg ├── close_white.svg ├── comment_light.svg ├── completed.svg ├── delete_light.svg ├── edit_light.svg ├── empty_avatar.png ├── favor_fill.svg ├── form_fill_light.png ├── form_fill_light.svg ├── form_light.png ├── form_light.svg ├── go_light.svg ├── home_fill_light.png ├── home_fill_light.svg ├── home_light.png ├── home_light.svg ├── location_light.svg ├── my_fill_light.png ├── my_fill_light.svg ├── my_light.png ├── my_light.svg ├── not-logged-background.png ├── payment-bacs.svg ├── payment-bacs_china.svg ├── payment-cod.svg ├── payment-wxapay.svg ├── pending.svg ├── placeholder.png ├── processing.svg ├── sale_fill.svg ├── search.svg ├── service_light.svg ├── share-friend.svg ├── share-timeline.svg ├── share_light.svg ├── sorry.svg ├── top_left_arrow.svg ├── top_light.svg ├── warn.svg └── woo-logo.png ├── pages ├── about │ ├── about.js │ ├── about.json │ ├── about.wxml │ └── about.wxss ├── cart │ ├── cart.js │ ├── cart.json │ ├── cart.wxml │ └── cart.wxss ├── category │ ├── category.js │ ├── category.json │ ├── category.wxml │ └── category.wxss ├── checkout │ ├── checkout.js │ ├── checkout.json │ ├── checkout.wxml │ └── checkout.wxss ├── index │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── my │ ├── my.js │ ├── my.json │ ├── my.wxml │ └── my.wxss ├── order-detail │ ├── order-detail.js │ ├── order-detail.json │ ├── order-detail.wxml │ └── order-detail.wxss ├── order-list │ ├── order-list.js │ ├── order-list.json │ ├── order-list.wxml │ └── order-list.wxss ├── product-detail │ ├── product-detail.js │ ├── product-detail.json │ ├── product-detail.wxml │ └── product-detail.wxss ├── product-list │ ├── product-list.js │ ├── product-list.json │ ├── product-list.wxml │ └── product-list.wxss ├── search │ ├── search.js │ ├── search.json │ ├── search.wxml │ └── search.wxss └── web-view │ ├── web-view.js │ ├── web-view.json │ ├── web-view.wxml │ └── web-view.wxss ├── sitemap.json ├── templates ├── login-popup.wxml ├── login.wxml ├── nav-bar.wxml ├── order-cart-list.wxml ├── product-gird.wxml ├── product-list.wxml ├── product-price.wxml └── product-selected-attributes.wxml ├── utils ├── methods.js ├── system.js ├── util.js └── variables.js └── vendor ├── ZanUI ├── actionsheet │ ├── index.js │ ├── index.wxml │ └── index.wxss ├── badge │ └── index.wxss ├── btn │ └── index.wxss ├── capsule │ ├── index.wxml │ └── index.wxss ├── card │ └── index.wxss ├── cell │ └── index.wxss ├── col │ └── index.wxss ├── color │ └── index.wxss ├── common │ └── helper.js ├── dialog │ ├── index.js │ ├── index.wxml │ └── index.wxss ├── field │ ├── index.js │ ├── index.wxml │ └── index.wxss ├── helper │ └── index.wxss ├── icon │ └── index.wxss ├── index.js ├── index.wxss ├── loadmore │ ├── index.wxml │ └── index.wxss ├── noticebar │ ├── index.js │ ├── index.wxml │ └── index.wxss ├── panel │ └── index.wxss ├── popup │ └── index.wxss ├── row │ └── index.wxss ├── select │ ├── index.js │ ├── index.wxml │ └── index.wxss ├── stepper │ ├── index.js │ ├── index.wxml │ └── index.wxss ├── steps │ ├── index.wxml │ ├── index.wxss │ └── wxss │ │ ├── step.wxss │ │ └── vstep.wxss ├── switch │ ├── index.js │ ├── index.wxml │ └── index.wxss ├── tab │ ├── index.js │ ├── index.wxml │ └── index.wxss ├── tag │ └── index.wxss ├── toast │ ├── index.js │ ├── index.wxml │ └── index.wxss └── toptips │ ├── index.js │ ├── index.wxml │ └── index.wxss └── html2wxml ├── highlight-styles ├── darcula.wxss ├── default.wxss ├── dracula.wxss └── tomorrow.wxss ├── html2wxml-main.js ├── html2wxml.js ├── html2wxml.json ├── html2wxml.wxml ├── html2wxml.wxss └── images └── loading.png /LICENSE: -------------------------------------------------------------------------------- 1 | 插件和小程序由广州米点网络科技有限公司开发并享有著作权,仅可用作搭建自营商城小程序线上销售商品,除此之外的任何其它用途并未在授权使用范围内,包括但不限于转售、出租、复制或再分发,或将源码部分或全部用于其它产品中。 2 | 对于违反上述协议、或未经书面许可的使用行为,均保留追究法律责任的权利。 3 | -------------------------------------------------------------------------------- /plugin/woocommerce-to-wechatapp-mini/LICENSE.txt: -------------------------------------------------------------------------------- 1 | 插件和小程序由广州米点网络科技有限公司开发并享有著作权,仅可用作搭建自营商城小程序线上销售商品,除此之外的任何其它用途并未在授权使用范围内,包括但不限于转售、出租、复制或再分发,或将源码部分或全部用于其它产品中。 2 | 对于违反上述协议、或未经书面许可的使用行为,均保留追究法律责任的权利。 3 | -------------------------------------------------------------------------------- /plugin/woocommerce-to-wechatapp-mini/assets/css/menu.css: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | @font-face { 3 | font-family: W2W; 4 | src: url(../fonts/W2W.eot?wrbsg0); 5 | src: url(../fonts/W2W.eot?wrbsg0#iefix) format("embedded-opentype"), url(../fonts/W2W.ttf?wrbsg0) format("truetype"), url(../fonts/W2W.woff?wrbsg0) format("woff"), url(../fonts/W2W.svg?wrbsg0#W2W) format("svg"); 6 | font-weight: 40.; 7 | font-style: normal; 8 | } 9 | 10 | #adminmenu #toplevel_page_w2w-settings .dashicons-before::before { 11 | font-family: W2W !important; 12 | content: '\e901' 13 | } -------------------------------------------------------------------------------- /plugin/woocommerce-to-wechatapp-mini/assets/fonts/W2W.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwqoffice/woocommerce-to-wechatapp-mini/78e1bca0f93af4c0d57312104bc6368a521774e4/plugin/woocommerce-to-wechatapp-mini/assets/fonts/W2W.eot -------------------------------------------------------------------------------- /plugin/woocommerce-to-wechatapp-mini/assets/fonts/W2W.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwqoffice/woocommerce-to-wechatapp-mini/78e1bca0f93af4c0d57312104bc6368a521774e4/plugin/woocommerce-to-wechatapp-mini/assets/fonts/W2W.ttf -------------------------------------------------------------------------------- /plugin/woocommerce-to-wechatapp-mini/assets/fonts/W2W.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwqoffice/woocommerce-to-wechatapp-mini/78e1bca0f93af4c0d57312104bc6368a521774e4/plugin/woocommerce-to-wechatapp-mini/assets/fonts/W2W.woff -------------------------------------------------------------------------------- /plugin/woocommerce-to-wechatapp-mini/includes/wxpay/class.WxPay.Exception.php: -------------------------------------------------------------------------------- 1 | getMessage(); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /plugin/woocommerce-to-wechatapp-mini/vendor/html2wxml/vendor/Highlight/languages/abnf.json: -------------------------------------------------------------------------------- 1 | {"illegal":"[!@#$^&',?+~`|:]","keywords":"ALPHA BIT CHAR CR CRLF CTL DIGIT DQUOTE HEXDIG HTAB LF LWSP OCTET SP VCHAR WSP","contains":[{"begin":"^[a-zA-Z][a-zA-Z0-9-]*\\s*=","returnBegin":true,"end":"=","relevance":0,"contains":[{"className":"attribute","begin":"^[a-zA-Z][a-zA-Z0-9-]*"}]},{"className":"comment","begin":";","end":"$","contains":[{"begin":"\\b(a|an|the|are|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|they|like|more)\\b"},{"className":"doctag","begin":"(?:TODO|FIXME|NOTE|BUG|XXX):","relevance":0}]},{"className":"symbol","begin":"%b[0-1]+(-[0-1]+|(\\.[0-1]+)+){0,1}"},{"className":"symbol","begin":"%d[0-9]+(-[0-9]+|(\\.[0-9]+)+){0,1}"},{"className":"symbol","begin":"%x[0-9A-F]+(-[0-9A-F]+|(\\.[0-9A-F]+)+){0,1}"},{"className":"symbol","begin":"%[si]"},{"className":"string","begin":"\"","end":"\"","illegal":"\\n","contains":[{"begin":"\\\\[\\s\\S]","relevance":0}]},{"className":"number","begin":"\\b\\d+(\\.\\d+)?","relevance":0}]} 2 | -------------------------------------------------------------------------------- /plugin/woocommerce-to-wechatapp-mini/vendor/html2wxml/vendor/Highlight/languages/accesslog.json: -------------------------------------------------------------------------------- 1 | {"contains":[{"className":"number","begin":"\\b\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}(:\\d{1,5})?\\b"},{"className":"number","begin":"\\b\\d+\\b","relevance":0},{"className":"string","begin":"\"(GET|POST|HEAD|PUT|DELETE|CONNECT|OPTIONS|PATCH|TRACE)","end":"\"","keywords":"GET POST HEAD PUT DELETE CONNECT OPTIONS PATCH TRACE","illegal":"\\n","relevance":10},{"className":"string","begin":"\\[","end":"\\]","illegal":"\\n"},{"className":"string","begin":"\"","end":"\"","illegal":"\\n"}]} 2 | -------------------------------------------------------------------------------- /plugin/woocommerce-to-wechatapp-mini/vendor/html2wxml/vendor/Highlight/languages/apache.json: -------------------------------------------------------------------------------- 1 | {"aliases":["apacheconf"],"case_insensitive":true,"contains":[{"className":"comment","begin":"#","end":"$","contains":[{"begin":"\\b(a|an|the|are|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|they|like|more)\\b"},{"className":"doctag","begin":"(?:TODO|FIXME|NOTE|BUG|XXX):","relevance":0}]},{"className":"section","begin":"?","end":">"},{"className":"attribute","begin":"\\w+","relevance":0,"keywords":{"nomarkup":"order deny allow setenv rewriterule rewriteengine rewritecond documentroot sethandler errordocument loadmodule options header listen serverroot servername"},"starts":{"end":"$","relevance":0,"keywords":{"literal":"on off all"},"contains":[{"className":"meta","begin":"\\s\\[","end":"\\]$"},{"className":"variable","begin":"[\\$%]\\{","end":"\\}","contains":["self",{"className":"number","begin":"[\\$%]\\d+"}]},{"$ref":"#contains.2.starts.contains.1.contains.1"},{"className":"string","begin":"\"","end":"\"","illegal":"\\n","contains":[{"begin":"\\\\[\\s\\S]","relevance":0}]}]}}],"illegal":"\\S"} 2 | -------------------------------------------------------------------------------- /plugin/woocommerce-to-wechatapp-mini/vendor/html2wxml/vendor/Highlight/languages/autohotkey.json: -------------------------------------------------------------------------------- 1 | {"case_insensitive":true,"aliases":["ahk"],"keywords":{"keyword":"Break Continue Critical Exit ExitApp Gosub Goto New OnExit Pause return SetBatchLines SetTimer Suspend Thread Throw Until ahk_id ahk_class ahk_pid ahk_exe ahk_group","literal":"A|0 true false NOT AND OR","built_in":"ComSpec Clipboard ClipboardAll ErrorLevel"},"contains":[{"className":"built_in","begin":"A_[a-zA-Z0-9]+"},{"begin":"`[\\s\\S]"},{"className":"string","begin":"\"","end":"\"","illegal":"\\n","contains":[{"$ref":"#contains.1"}]},{"className":"comment","begin":";","end":"$","contains":[{"begin":"\\b(a|an|the|are|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|they|like|more)\\b"},{"className":"doctag","begin":"(?:TODO|FIXME|NOTE|BUG|XXX):","relevance":0}],"relevance":0},{"className":"comment","begin":"/\\*","end":"\\*/","contains":[{"$ref":"#contains.3.contains.0"},{"className":"doctag","begin":"(?:TODO|FIXME|NOTE|BUG|XXX):","relevance":0}]},{"className":"number","begin":"\\b\\d+(\\.\\d+)?","relevance":0},{"className":"subst","begin":"%(?=[a-zA-Z0-9#_$@])","end":"%","illegal":"[^a-zA-Z0-9#_$@]"},{"className":"built_in","begin":"^\\s*\\w+\\s*,"},{"className":"meta","begin":"^\\s*#w+","end":"$","relevance":0},{"className":"symbol","contains":[{"$ref":"#contains.1"}],"variants":[{"begin":"^[^\\n\";]+::(?!=)"},{"begin":"^[^\\n\";]+:(?!=)","relevance":0}]},{"begin":",\\s*,"}]} 2 | -------------------------------------------------------------------------------- /plugin/woocommerce-to-wechatapp-mini/vendor/html2wxml/vendor/Highlight/languages/awk.json: -------------------------------------------------------------------------------- 1 | {"keywords":{"keyword":"BEGIN END if else while do for in break continue delete next nextfile function func exit|10"},"contains":[{"className":"variable","variants":[{"begin":"\\$[\\w\\d#@][\\w\\d_]*"},{"begin":"\\$\\{(.*?)}"}]},{"className":"string","contains":[{"begin":"\\\\[\\s\\S]","relevance":0}],"variants":[{"begin":"(u|b)?r?'''","end":"'''","relevance":10},{"begin":"(u|b)?r?\"\"\"","end":"\"\"\"","relevance":10},{"begin":"(u|r|ur)'","end":"'","relevance":10},{"begin":"(u|r|ur)\"","end":"\"","relevance":10},{"begin":"(b|br)'","end":"'"},{"begin":"(b|br)\"","end":"\""},{"className":"string","begin":"'","end":"'","illegal":"\\n","contains":[{"$ref":"#contains.1.contains.0"}]},{"className":"string","begin":"\"","end":"\"","illegal":"\\n","contains":[{"$ref":"#contains.1.contains.0"}]}]},{"className":"regexp","begin":"\\/","end":"\\/[gimuy]*","illegal":"\\n","contains":[{"$ref":"#contains.1.contains.0"},{"begin":"\\[","end":"\\]","relevance":0,"contains":[{"$ref":"#contains.1.contains.0"}]}]},{"className":"comment","begin":"#","end":"$","contains":[{"begin":"\\b(a|an|the|are|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|they|like|more)\\b"},{"className":"doctag","begin":"(?:TODO|FIXME|NOTE|BUG|XXX):","relevance":0}]},{"className":"number","begin":"\\b\\d+(\\.\\d+)?","relevance":0}]} 2 | -------------------------------------------------------------------------------- /plugin/woocommerce-to-wechatapp-mini/vendor/html2wxml/vendor/Highlight/languages/axapta.json: -------------------------------------------------------------------------------- 1 | {"keywords":"false int abstract private char boolean static null if for true while long throw finally protected final return void enum else break new catch byte super case short default double public try this switch continue reverse firstfast firstonly forupdate nofetch sum avg minof maxof count order group by asc desc index hint like dispaly edit client server ttsbegin ttscommit str real date container anytype common div mod","contains":[{"className":"comment","begin":"//","end":"$","contains":[{"begin":"\\b(a|an|the|are|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|they|like|more)\\b"},{"className":"doctag","begin":"(?:TODO|FIXME|NOTE|BUG|XXX):","relevance":0}]},{"className":"comment","begin":"/\\*","end":"\\*/","contains":[{"$ref":"#contains.0.contains.0"},{"className":"doctag","begin":"(?:TODO|FIXME|NOTE|BUG|XXX):","relevance":0}]},{"className":"string","begin":"'","end":"'","illegal":"\\n","contains":[{"begin":"\\\\[\\s\\S]","relevance":0}]},{"className":"string","begin":"\"","end":"\"","illegal":"\\n","contains":[{"$ref":"#contains.2.contains.0"}]},{"className":"number","begin":"(-?)(\\b0[xX][a-fA-F0-9]+|(\\b\\d+(\\.\\d*)?|\\.\\d+)([eE][-+]?\\d+)?)","relevance":0},{"className":"meta","begin":"#","end":"$"},{"className":"class","beginKeywords":"class interface","end":"{","excludeEnd":true,"illegal":":","contains":[{"beginKeywords":"extends implements"},{"className":"title","begin":"[a-zA-Z_]\\w*","relevance":0}]}]} 2 | -------------------------------------------------------------------------------- /plugin/woocommerce-to-wechatapp-mini/vendor/html2wxml/vendor/Highlight/languages/bnf.json: -------------------------------------------------------------------------------- 1 | {"contains":[{"className":"attribute","begin":"<","end":">"},{"begin":"::=","starts":{"end":"$","contains":[{"begin":"<","end":">"},{"className":"comment","begin":"//","end":"$","contains":[{"begin":"\\b(a|an|the|are|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|they|like|more)\\b"},{"className":"doctag","begin":"(?:TODO|FIXME|NOTE|BUG|XXX):","relevance":0}]},{"className":"comment","begin":"/\\*","end":"\\*/","contains":[{"$ref":"#contains.1.starts.contains.1.contains.0"},{"className":"doctag","begin":"(?:TODO|FIXME|NOTE|BUG|XXX):","relevance":0}]},{"className":"string","begin":"'","end":"'","illegal":"\\n","contains":[{"begin":"\\\\[\\s\\S]","relevance":0}]},{"className":"string","begin":"\"","end":"\"","illegal":"\\n","contains":[{"$ref":"#contains.1.starts.contains.3.contains.0"}]}]}}]} 2 | -------------------------------------------------------------------------------- /plugin/woocommerce-to-wechatapp-mini/vendor/html2wxml/vendor/Highlight/languages/brainfuck.json: -------------------------------------------------------------------------------- 1 | {"aliases":["bf"],"contains":[{"className":"comment","begin":"[^\\[\\]\\.,\\+\\-<> \r\n]","end":"[\\[\\]\\.,\\+\\-<> \r\n]","contains":[{"begin":"\\b(a|an|the|are|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|they|like|more)\\b"},{"className":"doctag","begin":"(?:TODO|FIXME|NOTE|BUG|XXX):","relevance":0}],"returnEnd":true,"relevance":0},{"className":"title","begin":"[\\[\\]]","relevance":0},{"className":"string","begin":"[\\.,]","relevance":0},{"begin":"\\+\\+|\\-\\-","returnBegin":true,"contains":[{"className":"literal","begin":"[\\+\\-]","relevance":0}]},{"$ref":"#contains.3.contains.0"}]} 2 | -------------------------------------------------------------------------------- /plugin/woocommerce-to-wechatapp-mini/vendor/html2wxml/vendor/Highlight/languages/capnproto.json: -------------------------------------------------------------------------------- 1 | {"aliases":["capnp"],"keywords":{"keyword":"struct enum interface union group import using const annotation extends in of on as with from fixed","built_in":"Void Bool Int8 Int16 Int32 Int64 UInt8 UInt16 UInt32 UInt64 Float32 Float64 Text Data AnyPointer AnyStruct Capability List","literal":"true false"},"contains":[{"className":"string","begin":"\"","end":"\"","illegal":"\\n","contains":[{"begin":"\\\\[\\s\\S]","relevance":0}]},{"className":"number","begin":"\\b\\d+(\\.\\d+)?","relevance":0},{"className":"comment","begin":"#","end":"$","contains":[{"begin":"\\b(a|an|the|are|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|they|like|more)\\b"},{"className":"doctag","begin":"(?:TODO|FIXME|NOTE|BUG|XXX):","relevance":0}]},{"className":"meta","begin":"@0x[\\w\\d]{16};","illegal":"\\n"},{"className":"symbol","begin":"@\\d+\\b"},{"className":"class","beginKeywords":"struct enum","end":"\\{","illegal":"\\n","contains":[{"className":"title","begin":"[a-zA-Z]\\w*","relevance":0,"starts":{"endsWithParent":true,"excludeEnd":true}}]},{"className":"class","beginKeywords":"interface","end":"\\{","illegal":"\\n","contains":[{"className":"title","begin":"[a-zA-Z]\\w*","relevance":0,"starts":{"endsWithParent":true,"excludeEnd":true}}]}]} 2 | -------------------------------------------------------------------------------- /plugin/woocommerce-to-wechatapp-mini/vendor/html2wxml/vendor/Highlight/languages/clean.json: -------------------------------------------------------------------------------- 1 | {"aliases":["clean","icl","dcl"],"keywords":{"keyword":"if let in with where case of class instance otherwise implementation definition system module from import qualified as special code inline foreign export ccall stdcall generic derive infix infixl infixr","literal":"True False"},"contains":[{"className":"comment","begin":"//","end":"$","contains":[{"begin":"\\b(a|an|the|are|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|they|like|more)\\b"},{"className":"doctag","begin":"(?:TODO|FIXME|NOTE|BUG|XXX):","relevance":0}]},{"className":"comment","begin":"/\\*","end":"\\*/","contains":[{"$ref":"#contains.0.contains.0"},{"className":"doctag","begin":"(?:TODO|FIXME|NOTE|BUG|XXX):","relevance":0}]},{"className":"string","begin":"'","end":"'","illegal":"\\n","contains":[{"begin":"\\\\[\\s\\S]","relevance":0}]},{"className":"string","begin":"\"","end":"\"","illegal":"\\n","contains":[{"$ref":"#contains.2.contains.0"}]},{"className":"number","begin":"(-?)(\\b0[xX][a-fA-F0-9]+|(\\b\\d+(\\.\\d*)?|\\.\\d+)([eE][-+]?\\d+)?)","relevance":0},{"begin":"->|<-[|:]?|::|#!?|>>=|\\{\\||\\|\\}|:==|=:|\\.\\.|<>|`"}]} 2 | -------------------------------------------------------------------------------- /plugin/woocommerce-to-wechatapp-mini/vendor/html2wxml/vendor/Highlight/languages/clojure-repl.json: -------------------------------------------------------------------------------- 1 | {"contains":[{"className":"meta","begin":"^([\\w.-]+|\\s*#_)=>","starts":{"end":"$","subLanguage":"clojure"}}]} 2 | -------------------------------------------------------------------------------- /plugin/woocommerce-to-wechatapp-mini/vendor/html2wxml/vendor/Highlight/languages/csp.json: -------------------------------------------------------------------------------- 1 | {"case_insensitive":false,"lexemes":"[a-zA-Z][a-zA-Z0-9_-]*","keywords":{"keyword":"base-uri child-src connect-src default-src font-src form-action frame-ancestors frame-src img-src media-src object-src plugin-types report-uri sandbox script-src style-src"},"contains":[{"className":"string","begin":"'","end":"'"},{"className":"attribute","begin":"^Content","end":":","excludeEnd":true}]} 2 | -------------------------------------------------------------------------------- /plugin/woocommerce-to-wechatapp-mini/vendor/html2wxml/vendor/Highlight/languages/diff.json: -------------------------------------------------------------------------------- 1 | {"aliases":["patch"],"contains":[{"className":"meta","relevance":10,"variants":[{"begin":"^@@ +\\-\\d+,\\d+ +\\+\\d+,\\d+ +@@$"},{"begin":"^\\*\\*\\* +\\d+,\\d+ +\\*\\*\\*\\*$"},{"begin":"^\\-\\-\\- +\\d+,\\d+ +\\-\\-\\-\\-$"}]},{"className":"comment","variants":[{"begin":"Index: ","end":"$"},{"begin":"={3,}","end":"$"},{"begin":"^\\-{3}","end":"$"},{"begin":"^\\*{3} ","end":"$"},{"begin":"^\\+{3}","end":"$"},{"begin":"\\*{5}","end":"\\*{5}$"}]},{"className":"addition","begin":"^\\+","end":"$"},{"className":"deletion","begin":"^\\-","end":"$"},{"className":"addition","begin":"^\\!","end":"$"}]} 2 | -------------------------------------------------------------------------------- /plugin/woocommerce-to-wechatapp-mini/vendor/html2wxml/vendor/Highlight/languages/dockerfile.json: -------------------------------------------------------------------------------- 1 | {"aliases":["docker"],"case_insensitive":true,"keywords":"from maintainer expose env arg user onbuild stopsignal","contains":[{"className":"comment","begin":"#","end":"$","contains":[{"begin":"\\b(a|an|the|are|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|they|like|more)\\b"},{"className":"doctag","begin":"(?:TODO|FIXME|NOTE|BUG|XXX):","relevance":0}]},{"className":"string","begin":"'","end":"'","illegal":"\\n","contains":[{"begin":"\\\\[\\s\\S]","relevance":0}]},{"className":"string","begin":"\"","end":"\"","illegal":"\\n","contains":[{"$ref":"#contains.1.contains.0"}]},{"className":"number","begin":"\\b\\d+(\\.\\d+)?","relevance":0},{"beginKeywords":"run cmd entrypoint volume add copy workdir label healthcheck shell","starts":{"end":"[^\\\\]\\n","subLanguage":"bash"}}],"illegal":""} 2 | -------------------------------------------------------------------------------- /plugin/woocommerce-to-wechatapp-mini/vendor/html2wxml/vendor/Highlight/languages/dos.json: -------------------------------------------------------------------------------- 1 | {"aliases":["bat","cmd"],"case_insensitive":true,"illegal":"\\/\\*","keywords":{"keyword":"if else goto for in do call exit not exist errorlevel defined equ neq lss leq gtr geq","built_in":"prn nul lpt3 lpt2 lpt1 con com4 com3 com2 com1 aux shift cd dir echo setlocal endlocal set pause copy append assoc at attrib break cacls cd chcp chdir chkdsk chkntfs cls cmd color comp compact convert date dir diskcomp diskcopy doskey erase fs find findstr format ftype graftabl help keyb label md mkdir mode more move path pause print popd pushd promt rd recover rem rename replace restore rmdir shiftsort start subst time title tree type ver verify vol ping net ipconfig taskkill xcopy ren del"},"contains":[{"className":"variable","begin":"%%[^ ]|%[^ ]+?%|![^ ]+?!"},{"className":"function","begin":"^\\s*[A-Za-z._?][A-Za-z0-9_$#@~.?]*(:|\\s+label)","end":"goto:eof","contains":[{"className":"title","begin":"([_a-zA-Z]\\w*\\.)*([_a-zA-Z]\\w*:)?[_a-zA-Z]\\w*","relevance":0},{"className":"comment","begin":"^\\s*@?rem\\b","end":"$","contains":[{"begin":"\\b(a|an|the|are|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|they|like|more)\\b"},{"className":"doctag","begin":"(?:TODO|FIXME|NOTE|BUG|XXX):","relevance":0}],"relevance":10}]},{"className":"number","begin":"\\b\\d+","relevance":0},{"$ref":"#contains.1.contains.1"}]} 2 | -------------------------------------------------------------------------------- /plugin/woocommerce-to-wechatapp-mini/vendor/html2wxml/vendor/Highlight/languages/dsconfig.json: -------------------------------------------------------------------------------- 1 | {"keywords":"dsconfig","contains":[{"className":"keyword","begin":"^dsconfig","end":"\\s","excludeEnd":true,"relevance":10},{"className":"built_in","begin":"(list|create|get|set|delete)-(\\w+)","end":"\\s","excludeEnd":true,"illegal":"!@#$%^&*()","relevance":10},{"className":"built_in","begin":"--(\\w+)","end":"\\s","excludeEnd":true},{"className":"string","begin":"\"","end":"\""},{"className":"string","begin":"'","end":"'"},{"className":"string","begin":"[\\w-?]+:\\w+","end":"\\W","relevance":0},{"className":"string","begin":"\\w+-?\\w+","end":"\\W","relevance":0},{"className":"comment","begin":"#","end":"$","contains":[{"begin":"\\b(a|an|the|are|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|they|like|more)\\b"},{"className":"doctag","begin":"(?:TODO|FIXME|NOTE|BUG|XXX):","relevance":0}]}]} 2 | -------------------------------------------------------------------------------- /plugin/woocommerce-to-wechatapp-mini/vendor/html2wxml/vendor/Highlight/languages/dust.json: -------------------------------------------------------------------------------- 1 | {"aliases":["dst"],"case_insensitive":true,"subLanguage":"xml","contains":[{"className":"template-tag","begin":"\\{[#\\/]","end":"\\}","illegal":";","contains":[{"className":"name","begin":"[a-zA-Z\\.-]+","starts":{"endsWithParent":true,"relevance":0,"contains":[{"className":"string","begin":"\"","end":"\"","illegal":"\\n","contains":[{"begin":"\\\\[\\s\\S]","relevance":0}]}]}}]},{"className":"template-variable","begin":"\\{","end":"\\}","illegal":";","keywords":"if eq ne lt lte gt gte select default math sep"}]} 2 | -------------------------------------------------------------------------------- /plugin/woocommerce-to-wechatapp-mini/vendor/html2wxml/vendor/Highlight/languages/ebnf.json: -------------------------------------------------------------------------------- 1 | {"illegal":"\\S","contains":[{"className":"comment","begin":"\\(\\*","end":"\\*\\)","contains":[{"begin":"\\b(a|an|the|are|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|they|like|more)\\b"},{"className":"doctag","begin":"(?:TODO|FIXME|NOTE|BUG|XXX):","relevance":0}]},{"className":"attribute","begin":"^[ ]*[a-zA-Z][a-zA-Z-]*([\\s-]+[a-zA-Z][a-zA-Z]*)*"},{"begin":"=","end":";","contains":[{"$ref":"#contains.0"},{"className":"meta","begin":"\\?.*\\?"},{"className":"string","begin":"'","end":"'","illegal":"\\n","contains":[{"begin":"\\\\[\\s\\S]","relevance":0}]},{"className":"string","begin":"\"","end":"\"","illegal":"\\n","contains":[{"$ref":"#contains.2.contains.2.contains.0"}]}]}]} 2 | -------------------------------------------------------------------------------- /plugin/woocommerce-to-wechatapp-mini/vendor/html2wxml/vendor/Highlight/languages/erb.json: -------------------------------------------------------------------------------- 1 | {"subLanguage":"xml","contains":[{"className":"comment","begin":"<%#","end":"%>","contains":[{"begin":"\\b(a|an|the|are|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|they|like|more)\\b"},{"className":"doctag","begin":"(?:TODO|FIXME|NOTE|BUG|XXX):","relevance":0}]},{"begin":"<%[%=-]?","end":"[%-]?%>","subLanguage":"ruby","excludeBegin":true,"excludeEnd":true}]} 2 | -------------------------------------------------------------------------------- /plugin/woocommerce-to-wechatapp-mini/vendor/html2wxml/vendor/Highlight/languages/erlang-repl.json: -------------------------------------------------------------------------------- 1 | {"keywords":{"built_in":"spawn spawn_link self","keyword":"after and andalso|10 band begin bnot bor bsl bsr bxor case catch cond div end fun if let not of or orelse|10 query receive rem try when xor"},"contains":[{"className":"meta","begin":"^[0-9]+> ","relevance":10},{"className":"comment","begin":"%","end":"$","contains":[{"begin":"\\b(a|an|the|are|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|they|like|more)\\b"},{"className":"doctag","begin":"(?:TODO|FIXME|NOTE|BUG|XXX):","relevance":0}]},{"className":"number","begin":"\\b(\\d+#[a-fA-F0-9]+|\\d+(\\.\\d+)?([eE][-+]?\\d+)?)","relevance":0},{"className":"string","begin":"'","end":"'","illegal":"\\n","contains":[{"begin":"\\\\[\\s\\S]","relevance":0}]},{"className":"string","begin":"\"","end":"\"","illegal":"\\n","contains":[{"$ref":"#contains.3.contains.0"}]},{"begin":"\\?(::)?([A-Z]\\w*(::)?)+"},{"begin":"->"},{"begin":"ok"},{"begin":"!"},{"begin":"(\\b[a-z'][a-zA-Z0-9_']*:[a-z'][a-zA-Z0-9_']*)|(\\b[a-z'][a-zA-Z0-9_']*)","relevance":0},{"begin":"[A-Z][a-zA-Z0-9_']*","relevance":0}]} 2 | -------------------------------------------------------------------------------- /plugin/woocommerce-to-wechatapp-mini/vendor/html2wxml/vendor/Highlight/languages/fix.json: -------------------------------------------------------------------------------- 1 | {"contains":[{"begin":"[^\\x{2401}\\x{0001}]+","end":"[\\x{2401}\\x{0001}]","excludeEnd":true,"returnBegin":true,"returnEnd":false,"contains":[{"begin":"([^\\x{2401}\\x{0001}=]+)","end":"=([^\\x{2401}\\x{0001}=]+)","returnEnd":true,"returnBegin":false,"className":"attr"},{"begin":"=","end":"([\\x{2401}\\x{0001}])","excludeEnd":true,"excludeBegin":true,"className":"string"}]}],"case_insensitive":true} 2 | -------------------------------------------------------------------------------- /plugin/woocommerce-to-wechatapp-mini/vendor/html2wxml/vendor/Highlight/languages/flix.json: -------------------------------------------------------------------------------- 1 | {"keywords":{"literal":"true false","keyword":"case class def else enum if impl import in lat rel index let match namespace switch type yield with"},"contains":[{"className":"comment","begin":"//","end":"$","contains":[{"begin":"\\b(a|an|the|are|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|they|like|more)\\b"},{"className":"doctag","begin":"(?:TODO|FIXME|NOTE|BUG|XXX):","relevance":0}]},{"className":"comment","begin":"/\\*","end":"\\*/","contains":[{"$ref":"#contains.0.contains.0"},{"className":"doctag","begin":"(?:TODO|FIXME|NOTE|BUG|XXX):","relevance":0}]},{"className":"string","begin":"'(.|\\\\[xXuU][a-zA-Z0-9]+)'"},{"className":"string","variants":[{"begin":"\"","end":"\""}]},{"className":"function","beginKeywords":"def","end":"[:={\\[(\\n;]","excludeEnd":true,"contains":[{"className":"title","begin":"[^0-9\\n\\t \"'(),.`{}\\[\\]:;][^\\n\\t \"'(),.`{}\\[\\]:;]+|[^0-9\\n\\t \"'(),.`{}\\[\\]:;=]"}]},{"className":"number","begin":"(-?)(\\b0[xX][a-fA-F0-9]+|(\\b\\d+(\\.\\d*)?|\\.\\d+)([eE][-+]?\\d+)?)","relevance":0}]} 2 | -------------------------------------------------------------------------------- /plugin/woocommerce-to-wechatapp-mini/vendor/html2wxml/vendor/Highlight/languages/fsharp.json: -------------------------------------------------------------------------------- 1 | {"aliases":["fs"],"keywords":"abstract and as assert base begin class default delegate do done downcast downto elif else end exception extern false finally for fun function global if in inherit inline interface internal lazy let match member module mutable namespace new null of open or override private public rec return sig static struct then to true try type upcast use val void when while with yield","illegal":"\\/\\*","contains":[{"className":"keyword","begin":"\\b(yield|return|let|do)!"},{"className":"string","begin":"@\"","end":"\"","contains":[{"begin":"\"\""}]},{"className":"string","begin":"\"\"\"","end":"\"\"\""},{"className":"comment","begin":"\\(\\*","end":"\\*\\)","contains":[{"begin":"\\b(a|an|the|are|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|they|like|more)\\b"},{"className":"doctag","begin":"(?:TODO|FIXME|NOTE|BUG|XXX):","relevance":0}]},{"className":"class","beginKeywords":"type","end":"\\(|=|$","excludeEnd":true,"contains":[{"className":"title","begin":"[a-zA-Z_]\\w*","relevance":0},{"begin":"<","end":">","contains":[{"className":"title","begin":"'[a-zA-Z0-9_]+","relevance":0}]}]},{"className":"meta","begin":"\\[<","end":">\\]","relevance":10},{"className":"symbol","begin":"\\B('[A-Za-z])\\b","contains":[{"begin":"\\\\[\\s\\S]","relevance":0}]},{"className":"comment","begin":"//","end":"$","contains":[{"$ref":"#contains.3.contains.0"},{"className":"doctag","begin":"(?:TODO|FIXME|NOTE|BUG|XXX):","relevance":0}]},{"className":"string","begin":"\"","end":"\"","illegal":null,"contains":[{"$ref":"#contains.6.contains.0"}]},{"className":"number","begin":"(-?)(\\b0[xX][a-fA-F0-9]+|(\\b\\d+(\\.\\d*)?|\\.\\d+)([eE][-+]?\\d+)?)","relevance":0}]} 2 | -------------------------------------------------------------------------------- /plugin/woocommerce-to-wechatapp-mini/vendor/html2wxml/vendor/Highlight/languages/gcode.json: -------------------------------------------------------------------------------- 1 | {"aliases":["nc"],"case_insensitive":true,"lexemes":"[A-Z_][A-Z0-9_.]*","keywords":"IF DO WHILE ENDWHILE CALL ENDIF SUB ENDSUB GOTO REPEAT ENDREPEAT EQ LT GT NE GE LE OR XOR","contains":[{"className":"meta","begin":"\\%"},{"className":"meta","begin":"([O])([0-9]+)"},{"className":"comment","begin":"//","end":"$","contains":[{"begin":"\\b(a|an|the|are|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|they|like|more)\\b"},{"className":"doctag","begin":"(?:TODO|FIXME|NOTE|BUG|XXX):","relevance":0}]},{"className":"comment","begin":"/\\*","end":"\\*/","contains":[{"$ref":"#contains.2.contains.0"},{"className":"doctag","begin":"(?:TODO|FIXME|NOTE|BUG|XXX):","relevance":0}]},{"className":"comment","begin":"\\(","end":"\\)","contains":[{"$ref":"#contains.2.contains.0"},{"className":"doctag","begin":"(?:TODO|FIXME|NOTE|BUG|XXX):","relevance":0}]},{"className":"number","begin":"([-+]?([0-9]*\\.?[0-9]+\\.?))|(-?)(\\b0[xX][a-fA-F0-9]+|(\\b\\d+(\\.\\d*)?|\\.\\d+)([eE][-+]?\\d+)?)","relevance":0},{"className":"string","begin":"'","end":"'","illegal":null,"contains":[{"begin":"\\\\[\\s\\S]","relevance":0}]},{"className":"string","begin":"\"","end":"\"","illegal":null,"contains":[{"$ref":"#contains.6.contains.0"}]},{"className":"name","begin":"([G])([0-9]+\\.?[0-9]?)"},{"className":"name","begin":"([M])([0-9]+\\.?[0-9]?)"},{"className":"attr","begin":"(VC|VS|#)","end":"(\\d+)"},{"className":"attr","begin":"(VZOFX|VZOFY|VZOFZ)"},{"className":"built_in","begin":"(ATAN|ABS|ACOS|ASIN|SIN|COS|EXP|FIX|FUP|ROUND|LN|TAN)(\\[)","end":"([-+]?([0-9]*\\.?[0-9]+\\.?))(\\])"},{"className":"symbol","variants":[{"begin":"N","end":"\\d+","illegal":"\\W"}]}]} 2 | -------------------------------------------------------------------------------- /plugin/woocommerce-to-wechatapp-mini/vendor/html2wxml/vendor/Highlight/languages/gherkin.json: -------------------------------------------------------------------------------- 1 | {"aliases":["feature"],"keywords":"Feature Background Ability Business Need Scenario Scenarios Scenario Outline Scenario Template Examples Given And Then But When","contains":[{"className":"symbol","begin":"\\*","relevance":0},{"className":"meta","begin":"@[^@\\s]+"},{"begin":"\\|","end":"\\|\\w*$","contains":[{"className":"string","begin":"[^|]+"}]},{"className":"variable","begin":"<","end":">"},{"className":"comment","begin":"#","end":"$","contains":[{"begin":"\\b(a|an|the|are|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|they|like|more)\\b"},{"className":"doctag","begin":"(?:TODO|FIXME|NOTE|BUG|XXX):","relevance":0}]},{"className":"string","begin":"\"\"\"","end":"\"\"\""},{"className":"string","begin":"\"","end":"\"","illegal":"\\n","contains":[{"begin":"\\\\[\\s\\S]","relevance":0}]}]} 2 | -------------------------------------------------------------------------------- /plugin/woocommerce-to-wechatapp-mini/vendor/html2wxml/vendor/Highlight/languages/go.json: -------------------------------------------------------------------------------- 1 | {"aliases":["golang"],"keywords":{"keyword":"break default func interface select case map struct chan else goto package switch const fallthrough if range type continue for import return var go defer bool byte complex64 complex128 float32 float64 int8 int16 int32 int64 string uint8 uint16 uint32 uint64 int uint uintptr rune","literal":"true false iota nil","built_in":"append cap close complex copy imag len make new panic print println real recover delete"},"illegal":"","contains":[{"className":"comment","begin":"//","end":"$","contains":[{"begin":"\\b(a|an|the|are|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|they|like|more)\\b"},{"className":"doctag","begin":"(?:TODO|FIXME|NOTE|BUG|XXX):","relevance":0}]},{"className":"comment","begin":"/\\*","end":"\\*/","contains":[{"$ref":"#contains.0.contains.0"},{"className":"doctag","begin":"(?:TODO|FIXME|NOTE|BUG|XXX):","relevance":0}]},{"className":"string","variants":[{"className":"string","begin":"\"","end":"\"","illegal":"\\n","contains":[{"begin":"\\\\[\\s\\S]","relevance":0}]},{"begin":"'","end":"[^\\\\]'"},{"begin":"`","end":"`"}]},{"className":"number","variants":[{"begin":"(-?)(\\b0[xX][a-fA-F0-9]+|(\\b\\d+(\\.\\d*)?|\\.\\d+)([eE][-+]?\\d+)?)[dflsi]","relevance":1},{"className":"number","begin":"(-?)(\\b0[xX][a-fA-F0-9]+|(\\b\\d+(\\.\\d*)?|\\.\\d+)([eE][-+]?\\d+)?)","relevance":0}]},{"begin":":="},{"className":"function","beginKeywords":"func","end":"\\s*\\{","excludeEnd":true,"contains":[{"className":"title","begin":"[a-zA-Z]\\w*","relevance":0},{"className":"params","begin":"\\(","end":"\\)","keywords":{"$ref":"#keywords"},"illegal":"[\"']"}]}]} 2 | -------------------------------------------------------------------------------- /plugin/woocommerce-to-wechatapp-mini/vendor/html2wxml/vendor/Highlight/languages/golo.json: -------------------------------------------------------------------------------- 1 | {"keywords":{"keyword":"println readln print import module function local return let var while for foreach times in case when match with break continue augment augmentation each find filter reduce if then else otherwise try catch finally raise throw orIfNull DynamicObject|10 DynamicVariable struct Observable map set vector list array","literal":"true false null"},"contains":[{"className":"comment","begin":"#","end":"$","contains":[{"begin":"\\b(a|an|the|are|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|they|like|more)\\b"},{"className":"doctag","begin":"(?:TODO|FIXME|NOTE|BUG|XXX):","relevance":0}]},{"className":"string","begin":"\"","end":"\"","illegal":"\\n","contains":[{"begin":"\\\\[\\s\\S]","relevance":0}]},{"className":"number","begin":"(-?)(\\b0[xX][a-fA-F0-9]+|(\\b\\d+(\\.\\d*)?|\\.\\d+)([eE][-+]?\\d+)?)","relevance":0},{"className":"meta","begin":"@[A-Za-z]+"}]} 2 | -------------------------------------------------------------------------------- /plugin/woocommerce-to-wechatapp-mini/vendor/html2wxml/vendor/Highlight/languages/haml.json: -------------------------------------------------------------------------------- 1 | {"case_insensitive":true,"contains":[{"className":"meta","begin":"^!!!( (5|1\\.1|Strict|Frameset|Basic|Mobile|RDFa|XML\\b.*))?$","relevance":10},{"className":"comment","begin":"^\\s*(!=#|=#|-#|/).*$","end":false,"contains":[{"begin":"\\b(a|an|the|are|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|they|like|more)\\b"},{"className":"doctag","begin":"(?:TODO|FIXME|NOTE|BUG|XXX):","relevance":0}],"relevance":0},{"begin":"^\\s*(-|=|!=)(?!#)","starts":{"end":"\\n","subLanguage":"ruby"}},{"className":"tag","begin":"^\\s*%","contains":[{"className":"selector-tag","begin":"\\w+"},{"className":"selector-id","begin":"#[\\w-]+"},{"className":"selector-class","begin":"\\.[\\w-]+"},{"begin":"{\\s*","end":"\\s*}","contains":[{"begin":":\\w+\\s*=>","end":",\\s+","returnBegin":true,"endsWithParent":true,"contains":[{"className":"attr","begin":":\\w+"},{"className":"string","begin":"'","end":"'","illegal":"\\n","contains":[{"begin":"\\\\[\\s\\S]","relevance":0}]},{"className":"string","begin":"\"","end":"\"","illegal":"\\n","contains":[{"$ref":"#contains.3.contains.3.contains.0.contains.1.contains.0"}]},{"begin":"\\w+","relevance":0}]}]},{"begin":"\\(\\s*","end":"\\s*\\)","excludeEnd":true,"contains":[{"begin":"\\w+\\s*=","end":"\\s+","returnBegin":true,"endsWithParent":true,"contains":[{"className":"attr","begin":"\\w+","relevance":0},{"$ref":"#contains.3.contains.3.contains.0.contains.1"},{"$ref":"#contains.3.contains.3.contains.0.contains.2"},{"begin":"\\w+","relevance":0}]}]}]},{"begin":"^\\s*[=~]\\s*"},{"begin":"#{","starts":{"end":"}","subLanguage":"ruby"}}]} 2 | -------------------------------------------------------------------------------- /plugin/woocommerce-to-wechatapp-mini/vendor/html2wxml/vendor/Highlight/languages/handlebars.json: -------------------------------------------------------------------------------- 1 | {"aliases":["hbs","html.hbs","html.handlebars"],"case_insensitive":true,"subLanguage":"xml","contains":[{"className":"comment","begin":"{{!(--)?","end":"(--)?}}","contains":[{"begin":"\\b(a|an|the|are|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|they|like|more)\\b"},{"className":"doctag","begin":"(?:TODO|FIXME|NOTE|BUG|XXX):","relevance":0}]},{"className":"template-tag","begin":"\\{\\{[#\\/]","end":"\\}\\}","contains":[{"className":"name","begin":"[a-zA-Z\\.-]+","keywords":{"builtin-name":"each in with if else unless bindattr action collection debugger log outlet template unbound view yield"},"starts":{"endsWithParent":true,"relevance":0,"contains":[{"className":"string","begin":"\"","end":"\"","illegal":"\\n","contains":[{"begin":"\\\\[\\s\\S]","relevance":0}]}]}}]},{"className":"template-variable","begin":"\\{\\{","end":"\\}\\}","keywords":{"$ref":"#contains.1.contains.0.keywords"}}]} 2 | -------------------------------------------------------------------------------- /plugin/woocommerce-to-wechatapp-mini/vendor/html2wxml/vendor/Highlight/languages/htmlbars.json: -------------------------------------------------------------------------------- 1 | {"case_insensitive":true,"subLanguage":"xml","contains":[{"className":"comment","begin":"{{!(--)?","end":"(--)?}}","contains":[{"begin":"\\b(a|an|the|are|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|they|like|more)\\b"},{"className":"doctag","begin":"(?:TODO|FIXME|NOTE|BUG|XXX):","relevance":0}]},{"className":"template-tag","begin":"\\{\\{[#\\/]","end":"\\}\\}","contains":[{"className":"name","begin":"[a-zA-Z\\.\\-]+","keywords":{"builtin-name":"action collection component concat debugger each each-in else get hash if input link-to loc log mut outlet partial query-params render textarea unbound unless with yield view"},"starts":{"endsWithParent":true,"relevance":0,"keywords":{"keyword":"as","built_in":"action collection component concat debugger each each-in else get hash if input link-to loc log mut outlet partial query-params render textarea unbound unless with yield view"},"contains":[{"className":"string","begin":"\"","end":"\"","illegal":"\\n","contains":[{"begin":"\\\\[\\s\\S]","relevance":0}]},{"illegal":"\\}\\}","begin":"[a-zA-Z0-9_]+=","returnBegin":true,"relevance":0,"contains":[{"className":"attr","begin":"[a-zA-Z0-9_]+"}]},{"className":"number","begin":"\\b\\d+(\\.\\d+)?","relevance":0}]}}]},{"className":"template-variable","begin":"\\{\\{[a-zA-Z][a-zA-Z\\-]+","end":"\\}\\}","keywords":{"keyword":"as","built_in":"action collection component concat debugger each each-in else get hash if input link-to loc log mut outlet partial query-params render textarea unbound unless with yield view"},"contains":[{"$ref":"#contains.1.contains.0.starts.contains.0"}]}]} 2 | -------------------------------------------------------------------------------- /plugin/woocommerce-to-wechatapp-mini/vendor/html2wxml/vendor/Highlight/languages/http.json: -------------------------------------------------------------------------------- 1 | {"aliases":["https"],"illegal":"\\S","contains":[{"begin":"^HTTP/[0-9\\.]+","end":"$","contains":[{"className":"number","begin":"\\b\\d{3}\\b"}]},{"begin":"^[A-Z]+ (.*?) HTTP/[0-9\\.]+$","returnBegin":true,"end":"$","contains":[{"className":"string","begin":" ","end":" ","excludeBegin":true,"excludeEnd":true},{"begin":"HTTP/[0-9\\.]+"},{"className":"keyword","begin":"[A-Z]+"}]},{"className":"attribute","begin":"^\\w","end":": ","excludeEnd":true,"illegal":"\\n|\\s|=","starts":{"end":"$","relevance":0}},{"begin":"\\n\\n","starts":{"subLanguage":[],"endsWithParent":true}}]} 2 | -------------------------------------------------------------------------------- /plugin/woocommerce-to-wechatapp-mini/vendor/html2wxml/vendor/Highlight/languages/inform7.json: -------------------------------------------------------------------------------- 1 | {"aliases":["i7"],"case_insensitive":true,"keywords":{"keyword":"thing room person man woman animal container supporter backdrop door scenery open closed locked inside gender is are say understand kind of rule"},"contains":[{"className":"string","begin":"\"","end":"\"","relevance":0,"contains":[{"className":"subst","begin":"\\[","end":"\\]"}]},{"className":"section","begin":"^(Volume|Book|Part|Chapter|Section|Table)\\b","end":"$"},{"begin":"^(Check|Carry out|Report|Instead of|To|Rule|When|Before|After)\\b","end":":","contains":[{"begin":"\\(This","end":"\\)"}]},{"className":"comment","begin":"\\[","end":"\\]","contains":["self"]}]} 2 | -------------------------------------------------------------------------------- /plugin/woocommerce-to-wechatapp-mini/vendor/html2wxml/vendor/Highlight/languages/ini.json: -------------------------------------------------------------------------------- 1 | {"aliases":["toml"],"case_insensitive":true,"illegal":"\\S","contains":[{"className":"comment","begin":";","end":"$","contains":[{"begin":"\\b(a|an|the|are|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|they|like|more)\\b"},{"className":"doctag","begin":"(?:TODO|FIXME|NOTE|BUG|XXX):","relevance":0}]},{"className":"comment","begin":"#","end":"$","contains":[{"$ref":"#contains.0.contains.0"},{"className":"doctag","begin":"(?:TODO|FIXME|NOTE|BUG|XXX):","relevance":0}]},{"className":"section","begin":"^\\s*\\[+","end":"\\]+"},{"begin":"^[a-z0-9\\[\\]_-]+\\s*=\\s*","end":"$","returnBegin":true,"contains":[{"className":"attr","begin":"[a-z0-9\\[\\]_-]+"},{"begin":"=","endsWithParent":true,"relevance":0,"contains":[{"className":"literal","begin":"\\bon|off|true|false|yes|no\\b"},{"className":"variable","variants":[{"begin":"\\$[\\w\\d\"][\\w\\d_]*"},{"begin":"\\$\\{(.*?)}"}]},{"className":"string","contains":[{"begin":"\\\\[\\s\\S]","relevance":0}],"variants":[{"begin":"'''","end":"'''","relevance":10},{"begin":"\"\"\"","end":"\"\"\"","relevance":10},{"begin":"\"","end":"\""},{"begin":"'","end":"'"}]},{"className":"number","begin":"([\\+\\-]+)?[\\d]+_[\\d_]+"},{"className":"number","begin":"\\b\\d+(\\.\\d+)?","relevance":0}]}]}]} 2 | -------------------------------------------------------------------------------- /plugin/woocommerce-to-wechatapp-mini/vendor/html2wxml/vendor/Highlight/languages/jboss-cli.json: -------------------------------------------------------------------------------- 1 | {"aliases":["wildfly-cli"],"lexemes":"[a-z-]+","keywords":{"keyword":"alias batch cd clear command connect connection-factory connection-info data-source deploy deployment-info deployment-overlay echo echo-dmr help history if jdbc-driver-info jms-queue|20 jms-topic|20 ls patch pwd quit read-attribute read-operation reload rollout-plan run-batch set shutdown try unalias undeploy unset version xa-data-source","literal":"true false"},"contains":[{"className":"comment","begin":"#","end":"$","contains":[{"begin":"\\b(a|an|the|are|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|they|like|more)\\b"},{"className":"doctag","begin":"(?:TODO|FIXME|NOTE|BUG|XXX):","relevance":0}]},{"className":"string","begin":"\"","end":"\"","illegal":"\\n","contains":[{"begin":"\\\\[\\s\\S]","relevance":0}]},{"className":"params","begin":"--[\\w\\-=\\/]+"},{"className":"function","begin":":[\\w\\-.]+","relevance":0},{"className":"string","begin":"\\B(([\\/.])[\\w\\-.\\/=]+)+"},{"className":"params","begin":"\\(","end":"\\)","contains":[{"begin":"[\\w-]+ *=","returnBegin":true,"relevance":0,"contains":[{"className":"attr","begin":"[\\w-]+"}]}],"relevance":0}]} 2 | -------------------------------------------------------------------------------- /plugin/woocommerce-to-wechatapp-mini/vendor/html2wxml/vendor/Highlight/languages/json.json: -------------------------------------------------------------------------------- 1 | {"contains":[{"className":"string","begin":"\"","end":"\"","illegal":"\\n","contains":[{"begin":"\\\\[\\s\\S]","relevance":0}]},{"className":"number","begin":"(-?)(\\b0[xX][a-fA-F0-9]+|(\\b\\d+(\\.\\d*)?|\\.\\d+)([eE][-+]?\\d+)?)","relevance":0},{"begin":"{","end":"}","contains":[{"className":"attr","begin":"\"","end":"\"","contains":[{"$ref":"#contains.0.contains.0"}],"illegal":"\\n"},{"end":",","endsWithParent":true,"excludeEnd":true,"contains":{"$ref":"#contains"},"keywords":{"literal":"true false null"},"begin":":"}],"illegal":"\\S"},{"begin":"\\[","end":"\\]","contains":[{"end":",","endsWithParent":true,"excludeEnd":true,"contains":{"$ref":"#contains"},"keywords":{"$ref":"#contains.2.contains.1.keywords"}}],"illegal":"\\S"}],"keywords":{"$ref":"#contains.2.contains.1.keywords"},"illegal":"\\S"} 2 | -------------------------------------------------------------------------------- /plugin/woocommerce-to-wechatapp-mini/vendor/html2wxml/vendor/Highlight/languages/julia-repl.json: -------------------------------------------------------------------------------- 1 | {"contains":[{"className":"meta","begin":"^julia>","relevance":10,"starts":{"end":"^(?![ ]{6})","subLanguage":"julia"},"aliases":["jldoctest"]}]} 2 | -------------------------------------------------------------------------------- /plugin/woocommerce-to-wechatapp-mini/vendor/html2wxml/vendor/Highlight/languages/ldif.json: -------------------------------------------------------------------------------- 1 | {"contains":[{"className":"attribute","begin":"^dn","end":": ","excludeEnd":true,"starts":{"end":"$","relevance":0},"relevance":10},{"className":"attribute","begin":"^\\w","end":": ","excludeEnd":true,"starts":{"end":"$","relevance":0}},{"className":"literal","begin":"^-","end":"$"},{"className":"comment","begin":"#","end":"$","contains":[{"begin":"\\b(a|an|the|are|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|they|like|more)\\b"},{"className":"doctag","begin":"(?:TODO|FIXME|NOTE|BUG|XXX):","relevance":0}]}]} 2 | -------------------------------------------------------------------------------- /plugin/woocommerce-to-wechatapp-mini/vendor/html2wxml/vendor/Highlight/languages/leaf.json: -------------------------------------------------------------------------------- 1 | {"contains":[{"className":"function","begin":"#+[A-Za-z_0-9]*\\(","end":" {","returnBegin":true,"excludeEnd":true,"contains":[{"className":"keyword","begin":"#+"},{"className":"title","begin":"[A-Za-z_][A-Za-z_0-9]*"},{"className":"params","begin":"\\(","end":"\\)","endsParent":true,"contains":[{"className":"string","begin":"\"","end":"\""},{"className":"variable","begin":"[A-Za-z_][A-Za-z_0-9]*"}]}]}]} 2 | -------------------------------------------------------------------------------- /plugin/woocommerce-to-wechatapp-mini/vendor/html2wxml/vendor/Highlight/languages/makefile.json: -------------------------------------------------------------------------------- 1 | {"aliases":["mk","mak"],"keywords":"define endef undefine ifdef ifndef ifeq ifneq else endif include -include sinclude override export unexport private vpath","lexemes":"[\\w-]+","contains":[{"className":"comment","begin":"#","end":"$","contains":[{"begin":"\\b(a|an|the|are|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|they|like|more)\\b"},{"className":"doctag","begin":"(?:TODO|FIXME|NOTE|BUG|XXX):","relevance":0}]},{"className":"variable","variants":[{"begin":"\\$\\([a-zA-Z_]\\w*\\)","contains":[{"begin":"\\\\[\\s\\S]","relevance":0}]},{"begin":"\\$[@%\\^\\+\\*]"}]},{"className":"string","begin":"\"","end":"\"","contains":[{"$ref":"#contains.1.variants.0.contains.0"},{"$ref":"#contains.1"}]},{"className":"variable","begin":"\\$\\([\\w-]+\\s","end":"\\)","keywords":{"built_in":"subst patsubst strip findstring filter filter-out sort word wordlist firstword lastword dir notdir suffix basename addsuffix addprefix join wildcard realpath abspath error warning shell origin flavor foreach if or and call eval file value"},"contains":[{"$ref":"#contains.1"}]},{"begin":"^[a-zA-Z_]\\w*\\s*[:+?]?=","illegal":"\\n","returnBegin":true,"contains":[{"begin":"^[a-zA-Z_]\\w*","end":"[:+?]?=","excludeEnd":true}]},{"className":"meta","begin":"^\\.PHONY:","end":"$","keywords":{"meta-keyword":".PHONY"},"lexemes":"[\\.\\w]+"},{"className":"section","begin":"^[^\\s]+:","end":"$","contains":[{"$ref":"#contains.1"}]}]} 2 | -------------------------------------------------------------------------------- /plugin/woocommerce-to-wechatapp-mini/vendor/html2wxml/vendor/Highlight/languages/markdown.json: -------------------------------------------------------------------------------- 1 | {"aliases":["md","mkdown","mkd"],"contains":[{"className":"section","variants":[{"begin":"^#{1,6}","end":"$"},{"begin":"^.+?\\n[=-]{2,}$"}]},{"begin":"<","end":">","subLanguage":"xml","relevance":0},{"className":"bullet","begin":"^([*+-]|(\\d+\\.))\\s+"},{"className":"strong","begin":"[*_]{2}.+?[*_]{2}"},{"className":"emphasis","variants":[{"begin":"\\*.+?\\*"},{"begin":"_.+?_","relevance":0}]},{"className":"quote","begin":"^>\\s+","end":"$"},{"className":"code","variants":[{"begin":"^```w*s*$","end":"^```s*$"},{"begin":"`.+?`"},{"begin":"^( {4}|\t)","end":"$","relevance":0}]},{"begin":"^[-\\*]{3,}","end":"$"},{"begin":"\\[.+?\\][\\(\\[].*?[\\)\\]]","returnBegin":true,"contains":[{"className":"string","begin":"\\[","end":"\\]","excludeBegin":true,"returnEnd":true,"relevance":0},{"className":"link","begin":"\\]\\(","end":"\\)","excludeBegin":true,"excludeEnd":true},{"className":"symbol","begin":"\\]\\[","end":"\\]","excludeBegin":true,"excludeEnd":true}],"relevance":10},{"begin":"^\\[[^\\n]+\\]:","returnBegin":true,"contains":[{"className":"symbol","begin":"\\[","end":"\\]","excludeBegin":true,"excludeEnd":true},{"className":"link","begin":":\\s*","end":"$","excludeBegin":true}]}]} 2 | -------------------------------------------------------------------------------- /plugin/woocommerce-to-wechatapp-mini/vendor/html2wxml/vendor/Highlight/languages/mizar.json: -------------------------------------------------------------------------------- 1 | {"keywords":"environ vocabularies notations constructors definitions registrations theorems schemes requirements begin end definition registration cluster existence pred func defpred deffunc theorem proof let take assume then thus hence ex for st holds consider reconsider such that and in provided of as from be being by means equals implies iff redefine define now not or attr is mode suppose per cases set thesis contradiction scheme reserve struct correctness compatibility coherence symmetry assymetry reflexivity irreflexivity connectedness uniqueness commutativity idempotence involutiveness projectivity","contains":[{"className":"comment","begin":"::","end":"$","contains":[{"begin":"\\b(a|an|the|are|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|they|like|more)\\b"},{"className":"doctag","begin":"(?:TODO|FIXME|NOTE|BUG|XXX):","relevance":0}]}]} 2 | -------------------------------------------------------------------------------- /plugin/woocommerce-to-wechatapp-mini/vendor/html2wxml/vendor/Highlight/languages/mojolicious.json: -------------------------------------------------------------------------------- 1 | {"subLanguage":"xml","contains":[{"className":"meta","begin":"^__(END|DATA)__$"},{"begin":"^\\s*%{1,2}={0,2}","end":"$","subLanguage":"perl"},{"begin":"<%{1,2}={0,2}","end":"={0,1}%>","subLanguage":"perl","excludeBegin":true,"excludeEnd":true}]} 2 | -------------------------------------------------------------------------------- /plugin/woocommerce-to-wechatapp-mini/vendor/html2wxml/vendor/Highlight/languages/nix.json: -------------------------------------------------------------------------------- 1 | {"aliases":["nixos"],"keywords":{"keyword":"rec with let in inherit assert if else then","literal":"true false or and null","built_in":"import abort baseNameOf dirOf isNull builtins map removeAttrs throw toString derivation"},"contains":[{"className":"number","begin":"\\b\\d+(\\.\\d+)?","relevance":0},{"className":"comment","begin":"#","end":"$","contains":[{"begin":"\\b(a|an|the|are|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|they|like|more)\\b"},{"className":"doctag","begin":"(?:TODO|FIXME|NOTE|BUG|XXX):","relevance":0}]},{"className":"comment","begin":"/\\*","end":"\\*/","contains":[{"$ref":"#contains.1.contains.0"},{"className":"doctag","begin":"(?:TODO|FIXME|NOTE|BUG|XXX):","relevance":0}]},{"className":"string","contains":[{"className":"subst","begin":"\\$\\{","end":"}","keywords":{"$ref":"#keywords"},"contains":{"$ref":"#contains"}}],"variants":[{"begin":"''","end":"''"},{"begin":"\"","end":"\""}]},{"begin":"[a-zA-Z0-9-_]+(\\s*=)","returnBegin":true,"relevance":0,"contains":[{"className":"attr","begin":"\\S+"}]}]} 2 | -------------------------------------------------------------------------------- /plugin/woocommerce-to-wechatapp-mini/vendor/html2wxml/vendor/Highlight/languages/parser3.json: -------------------------------------------------------------------------------- 1 | {"subLanguage":"xml","relevance":0,"contains":[{"className":"comment","begin":"^#","end":"$","contains":[{"begin":"\\b(a|an|the|are|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|they|like|more)\\b"},{"className":"doctag","begin":"(?:TODO|FIXME|NOTE|BUG|XXX):","relevance":0}]},{"className":"comment","begin":"\\^rem{","end":"}","contains":[{"className":"comment","begin":"{","end":"}","contains":["self",{"$ref":"#contains.0.contains.0"},{"className":"doctag","begin":"(?:TODO|FIXME|NOTE|BUG|XXX):","relevance":0}]},{"$ref":"#contains.0.contains.0"},{"className":"doctag","begin":"(?:TODO|FIXME|NOTE|BUG|XXX):","relevance":0}],"relevance":10},{"className":"meta","begin":"^@(?:BASE|USE|CLASS|OPTIONS)$","relevance":10},{"className":"title","begin":"@[\\w\\-]+\\[[\\w^;\\-]*\\](?:\\[[\\w^;\\-]*\\])?(?:.*)$"},{"className":"variable","begin":"\\$\\{?[\\w\\-\\.\\:]+\\}?"},{"className":"keyword","begin":"\\^[\\w\\-\\.\\:]+"},{"className":"number","begin":"\\^#[0-9a-fA-F]+"},{"className":"number","begin":"(-?)(\\b0[xX][a-fA-F0-9]+|(\\b\\d+(\\.\\d*)?|\\.\\d+)([eE][-+]?\\d+)?)","relevance":0}]} 2 | -------------------------------------------------------------------------------- /plugin/woocommerce-to-wechatapp-mini/vendor/html2wxml/vendor/Highlight/languages/profile.json: -------------------------------------------------------------------------------- 1 | {"contains":[{"className":"number","begin":"(-?)(\\b0[xX][a-fA-F0-9]+|(\\b\\d+(\\.\\d*)?|\\.\\d+)([eE][-+]?\\d+)?)","relevance":0},{"begin":"[a-zA-Z_][\\da-zA-Z_]+\\.[\\da-zA-Z_]{1,3}","end":":","excludeEnd":true},{"begin":"(ncalls|tottime|cumtime)","end":"$","keywords":"ncalls tottime|10 cumtime|10 filename","relevance":10},{"begin":"function calls","end":"$","contains":[{"$ref":"#contains.0"}],"relevance":10},{"className":"string","begin":"'","end":"'","illegal":"\\n","contains":[{"begin":"\\\\[\\s\\S]","relevance":0}]},{"className":"string","begin":"\"","end":"\"","illegal":"\\n","contains":[{"$ref":"#contains.4.contains.0"},{"className":"subst","begin":"\\\\[abfnrtv]\\|\\\\x[0-9a-fA-F]*\\\\\\|%[-+# *.0-9]*[dioxXucsfeEgGp]","relevance":0},{"className":"subst","begin":"\\\\[abfnrtv]\\|\\\\x[0-9a-fA-F]*\\\\\\|%[-+# *.0-9]*[dioxXucsfeEgGp]","relevance":0}]},{"className":"string","begin":"\\(","end":"\\)$","excludeBegin":true,"excludeEnd":true,"relevance":0}]} 2 | -------------------------------------------------------------------------------- /plugin/woocommerce-to-wechatapp-mini/vendor/html2wxml/vendor/Highlight/languages/protobuf.json: -------------------------------------------------------------------------------- 1 | {"keywords":{"keyword":"package import option optional required repeated group","built_in":"double float int32 int64 uint32 uint64 sint32 sint64 fixed32 fixed64 sfixed32 sfixed64 bool string bytes","literal":"true false"},"contains":[{"className":"string","begin":"\"","end":"\"","illegal":"\\n","contains":[{"begin":"\\\\[\\s\\S]","relevance":0},{"className":"subst","begin":"\\\\[abfnrtv]\\|\\\\x[0-9a-fA-F]*\\\\\\|%[-+# *.0-9]*[dioxXucsfeEgGp]","relevance":0},{"className":"subst","begin":"\\\\[abfnrtv]\\|\\\\x[0-9a-fA-F]*\\\\\\|%[-+# *.0-9]*[dioxXucsfeEgGp]","relevance":0}]},{"className":"number","begin":"\\b\\d+(\\.\\d+)?","relevance":0},{"className":"comment","begin":"//","end":"$","contains":[{"begin":"\\b(a|an|the|are|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|they|like|more)\\b"},{"className":"doctag","begin":"(?:TODO|FIXME|NOTE|BUG|XXX):","relevance":0}]},{"className":"class","beginKeywords":"message enum service","end":"\\{","illegal":"\\n","contains":[{"className":"title","begin":"[a-zA-Z]\\w*","relevance":0,"starts":{"endsWithParent":true,"excludeEnd":true}}]},{"className":"function","beginKeywords":"rpc","end":";","excludeEnd":true,"keywords":"rpc returns"},{"begin":"^\\s*[A-Z_]+","end":"\\s*=","excludeEnd":true}]} 2 | -------------------------------------------------------------------------------- /plugin/woocommerce-to-wechatapp-mini/vendor/html2wxml/vendor/Highlight/languages/purebasic.json: -------------------------------------------------------------------------------- 1 | {"aliases":["pb","pbi"],"keywords":"And As Break CallDebugger Case CompilerCase CompilerDefault CompilerElse CompilerEndIf CompilerEndSelect CompilerError CompilerIf CompilerSelect Continue Data DataSection EndDataSection Debug DebugLevel Default Define Dim DisableASM DisableDebugger DisableExplicit Else ElseIf EnableASM EnableDebugger EnableExplicit End EndEnumeration EndIf EndImport EndInterface EndMacro EndProcedure EndSelect EndStructure EndStructureUnion EndWith Enumeration Extends FakeReturn For Next ForEach ForEver Global Gosub Goto If Import ImportC IncludeBinary IncludeFile IncludePath Interface Macro NewList Not Or ProcedureReturn Protected Prototype PrototypeC Read ReDim Repeat Until Restore Return Select Shared Static Step Structure StructureUnion Swap To Wend While With XIncludeFile XOr Procedure ProcedureC ProcedureCDLL ProcedureDLL Declare DeclareC DeclareCDLL DeclareDLL","contains":[{"className":"comment","begin":";","end":"$","contains":[{"begin":"\\b(a|an|the|are|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|they|like|more)\\b"},{"className":"doctag","begin":"(?:TODO|FIXME|NOTE|BUG|XXX):","relevance":0}],"relevance":0},{"className":"function","begin":"\\b(Procedure|Declare)(C|CDLL|DLL)?\\b","end":"\\(","excludeEnd":true,"returnBegin":true,"contains":[{"className":"keyword","begin":"(Procedure|Declare)(C|CDLL|DLL)?","excludeEnd":true},{"className":"type","begin":"\\.\\w*"},{"className":"title","begin":"[a-zA-Z_]\\w*","relevance":0}]},{"className":"string","begin":"(~)?\"","end":"\"","illegal":"\\n"},{"className":"symbol","begin":"#[a-zA-Z_]\\w*\\$?"}]} 2 | -------------------------------------------------------------------------------- /plugin/woocommerce-to-wechatapp-mini/vendor/html2wxml/vendor/Highlight/languages/r.json: -------------------------------------------------------------------------------- 1 | {"contains":[{"className":"comment","begin":"#","end":"$","contains":[{"begin":"\\b(a|an|the|are|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|they|like|more)\\b"},{"className":"doctag","begin":"(?:TODO|FIXME|NOTE|BUG|XXX):","relevance":0}]},{"begin":"([a-zA-Z]|\\.[a-zA-Z.])[a-zA-Z0-9._]*","lexemes":"([a-zA-Z]|\\.[a-zA-Z.])[a-zA-Z0-9._]*","keywords":{"keyword":"function if in break next repeat else for return switch while try tryCatch stop warning require library attach detach source setMethod setGeneric setGroupGeneric setClass ...","literal":"NULL NA TRUE FALSE T F Inf NaN NA_integer_|10 NA_real_|10 NA_character_|10 NA_complex_|10"},"relevance":0},{"className":"number","begin":"0[xX][0-9a-fA-F]+[Li]?\\b","relevance":0},{"className":"number","begin":"\\d+(?:[eE][+\\-]?\\d*)?L\\b","relevance":0},{"className":"number","begin":"\\d+\\.(?!\\d)(?:i\\b)?","relevance":0},{"className":"number","begin":"\\d+(?:\\.\\d*)?(?:[eE][+\\-]?\\d*)?i?\\b","relevance":0},{"className":"number","begin":"\\.\\d+(?:[eE][+\\-]?\\d*)?i?\\b","relevance":0},{"begin":"`","end":"`","relevance":0},{"className":"string","contains":[{"begin":"\\\\[\\s\\S]","relevance":0}],"variants":[{"begin":"\"","end":"\""},{"begin":"'","end":"'"}]}]} 2 | -------------------------------------------------------------------------------- /plugin/woocommerce-to-wechatapp-mini/vendor/html2wxml/vendor/Highlight/languages/roboconf.json: -------------------------------------------------------------------------------- 1 | {"aliases":["graph","instances"],"case_insensitive":true,"keywords":"import","contains":[{"begin":"^facet [a-zA-Z-_][^\\n{]+\\{","end":"}","keywords":"facet","contains":[{"className":"attribute","begin":"[a-zA-Z-_]+","end":"\\s*:","excludeEnd":true,"starts":{"end":";","relevance":0,"contains":[{"className":"variable","begin":"\\.[a-zA-Z-_]+"},{"className":"keyword","begin":"\\(optional\\)"}]}},{"className":"comment","begin":"#","end":"$","contains":[{"begin":"\\b(a|an|the|are|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|they|like|more)\\b"},{"className":"doctag","begin":"(?:TODO|FIXME|NOTE|BUG|XXX):","relevance":0}]}]},{"begin":"^\\s*instance of [a-zA-Z-_][^\\n{]+\\{","end":"}","keywords":"name count channels instance-data instance-state instance of","illegal":"\\S","contains":["self",{"$ref":"#contains.0.contains.0"},{"$ref":"#contains.0.contains.1"}]},{"begin":"^[a-zA-Z-_][^\\n{]+\\{","end":"}","contains":[{"$ref":"#contains.0.contains.0"},{"$ref":"#contains.0.contains.1"}]},{"$ref":"#contains.0.contains.1"}]} 2 | -------------------------------------------------------------------------------- /plugin/woocommerce-to-wechatapp-mini/vendor/html2wxml/vendor/Highlight/languages/scilab.json: -------------------------------------------------------------------------------- 1 | {"aliases":["sci"],"lexemes":"%?\\w+","keywords":{"keyword":"abort break case clear catch continue do elseif else endfunction end for function global if pause return resume select try then while","literal":"%f %F %t %T %pi %eps %inf %nan %e %i %z %s","built_in":"abs and acos asin atan ceil cd chdir clearglobal cosh cos cumprod deff disp error exec execstr exists exp eye gettext floor fprintf fread fsolve imag isdef isempty isinfisnan isvector lasterror length load linspace list listfiles log10 log2 log max min msprintf mclose mopen ones or pathconvert poly printf prod pwd rand real round sinh sin size gsort sprintf sqrt strcat strcmps tring sum system tanh tan type typename warning zeros matrix"},"illegal":"(\"|#|/\\*|\\s+/\\w+)","contains":[{"className":"function","beginKeywords":"function","end":"$","contains":[{"className":"title","begin":"[a-zA-Z_]\\w*","relevance":0},{"className":"params","begin":"\\(","end":"\\)"}]},{"begin":"[a-zA-Z_][a-zA-Z_0-9]*('+[\\.']*|[\\.']+)","end":"","relevance":0},{"begin":"\\[","end":"\\]'*[\\.']*","relevance":0,"contains":[{"className":"number","begin":"(-?)(\\b0[xX][a-fA-F0-9]+|(\\b\\d+(\\.\\d*)?|\\.\\d+)([eE][-+]?\\d+)?)","relevance":0},{"className":"string","begin":"'|\"","end":"'|\"","contains":[{"begin":"\\\\[\\s\\S]","relevance":0},{"begin":"''"}]}]},{"className":"comment","begin":"//","end":"$","contains":[{"begin":"\\b(a|an|the|are|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|they|like|more)\\b"},{"className":"doctag","begin":"(?:TODO|FIXME|NOTE|BUG|XXX):","relevance":0}]},{"$ref":"#contains.2.contains.0"},{"$ref":"#contains.2.contains.1"}]} 2 | -------------------------------------------------------------------------------- /plugin/woocommerce-to-wechatapp-mini/vendor/html2wxml/vendor/Highlight/languages/shell.json: -------------------------------------------------------------------------------- 1 | {"aliases":["console"],"contains":[{"className":"meta","begin":"^\\s{0,3}[\\w\\d\\[\\]()@-]*[>%$#]","starts":{"end":"$","subLanguage":"bash"}}]} 2 | -------------------------------------------------------------------------------- /plugin/woocommerce-to-wechatapp-mini/vendor/html2wxml/vendor/Highlight/languages/smali.json: -------------------------------------------------------------------------------- 1 | {"aliases":["smali"],"contains":[{"className":"string","begin":"\"","end":"\"","relevance":0},{"className":"comment","begin":"#","end":"$","contains":[{"begin":"\\b(a|an|the|are|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|they|like|more)\\b"},{"className":"doctag","begin":"(?:TODO|FIXME|NOTE|BUG|XXX):","relevance":0}],"relevance":0},{"className":"keyword","variants":[{"begin":"\\s*\\.end\\s[a-zA-Z0-9]*"},{"begin":"^[ ]*\\.[a-zA-Z]*","relevance":0},{"begin":"\\s:[a-zA-Z_0-9]*","relevance":0},{"begin":"\\s(transient|constructor|abstract|final|synthetic|public|private|protected|static|bridge|system)"}]},{"className":"built_in","variants":[{"begin":"\\s(add|and|cmp|cmpg|cmpl|const|div|double|float|goto|if|int|long|move|mul|neg|new|nop|not|or|rem|return|shl|shr|sput|sub|throw|ushr|xor)\\s"},{"begin":"\\s(add|and|cmp|cmpg|cmpl|const|div|double|float|goto|if|int|long|move|mul|neg|new|nop|not|or|rem|return|shl|shr|sput|sub|throw|ushr|xor)((\\-|/)[a-zA-Z0-9]+)+\\s","relevance":10},{"begin":"\\s(aget|aput|array|check|execute|fill|filled|goto/16|goto/32|iget|instance|invoke|iput|monitor|packed|sget|sparse)((\\-|/)[a-zA-Z0-9]+)*\\s","relevance":10}]},{"className":"class","begin":"L[^(;:\n]*;","relevance":0},{"begin":"[vp][0-9]+"}]} 2 | -------------------------------------------------------------------------------- /plugin/woocommerce-to-wechatapp-mini/vendor/html2wxml/vendor/Highlight/languages/smalltalk.json: -------------------------------------------------------------------------------- 1 | {"aliases":["st"],"keywords":"self super nil true false thisContext","contains":[{"className":"comment","begin":"\"","end":"\"","contains":[{"begin":"\\b(a|an|the|are|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|they|like|more)\\b"},{"className":"doctag","begin":"(?:TODO|FIXME|NOTE|BUG|XXX):","relevance":0}]},{"className":"string","begin":"'","end":"'","illegal":"\\n","contains":[{"begin":"\\\\[\\s\\S]","relevance":0}]},{"className":"type","begin":"\\b[A-Z][A-Za-z0-9_]*","relevance":0},{"begin":"[a-z][a-zA-Z0-9_]*:","relevance":0},{"className":"number","begin":"(-?)(\\b0[xX][a-fA-F0-9]+|(\\b\\d+(\\.\\d*)?|\\.\\d+)([eE][-+]?\\d+)?)","relevance":0},{"className":"symbol","begin":"#[a-zA-Z_]\\w*"},{"className":"string","begin":"\\$.{1}"},{"begin":"\\|[ ]*[a-z][a-zA-Z0-9_]*([ ]+[a-z][a-zA-Z0-9_]*)*[ ]*\\|","returnBegin":true,"end":"\\|","illegal":"\\S","contains":[{"begin":"(\\|[ ]*)?[a-z][a-zA-Z0-9_]*"}]},{"begin":"\\#\\(","end":"\\)","contains":[{"$ref":"#contains.1"},{"$ref":"#contains.6"},{"$ref":"#contains.4"},{"$ref":"#contains.5"}]}]} 2 | -------------------------------------------------------------------------------- /plugin/woocommerce-to-wechatapp-mini/vendor/html2wxml/vendor/Highlight/languages/sml.json: -------------------------------------------------------------------------------- 1 | {"aliases":["ml"],"keywords":{"keyword":"abstype and andalso as case datatype do else end eqtype exception fn fun functor handle if in include infix infixr let local nonfix of op open orelse raise rec sharing sig signature struct structure then type val with withtype where while","built_in":"array bool char exn int list option order real ref string substring vector unit word","literal":"true false NONE SOME LESS EQUAL GREATER nil"},"illegal":"\\/\\/|>>","lexemes":"[a-z_]\\w*!?","contains":[{"className":"literal","begin":"\\[(\\|\\|)?\\]|\\(\\)","relevance":0},{"className":"comment","begin":"\\(\\*","end":"\\*\\)","contains":["self",{"begin":"\\b(a|an|the|are|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|they|like|more)\\b"},{"className":"doctag","begin":"(?:TODO|FIXME|NOTE|BUG|XXX):","relevance":0}]},{"className":"symbol","begin":"'[A-Za-z_](?!')[\\w']*"},{"className":"type","begin":"`[A-Z][\\w']*"},{"className":"type","begin":"\\b[A-Z][\\w']*","relevance":0},{"begin":"[a-z_]\\w*'[\\w']*"},{"className":"string","begin":"'","end":"'","illegal":"\\n","contains":[{"begin":"\\\\[\\s\\S]","relevance":0}],"relevance":0},{"className":"string","begin":"\"","end":"\"","illegal":null,"contains":[{"$ref":"#contains.6.contains.0"},{"className":"subst","begin":"\\\\[abfnrtv]\\|\\\\x[0-9a-fA-F]*\\\\\\|%[-+# *.0-9]*[dioxXucsfeEgGp]","relevance":0},{"className":"subst","begin":"\\\\[abfnrtv]\\|\\\\x[0-9a-fA-F]*\\\\\\|%[-+# *.0-9]*[dioxXucsfeEgGp]","relevance":0}]},{"className":"number","begin":"\\b(0[xX][a-fA-F0-9_]+[Lln]?|0[oO][0-7_]+[Lln]?|0[bB][01_]+[Lln]?|[0-9][0-9_]*([Lln]|(\\.[0-9_]*)?([eE][-+]?[0-9_]+)?)?)","relevance":0},{"begin":"[-=]>"}]} 2 | -------------------------------------------------------------------------------- /plugin/woocommerce-to-wechatapp-mini/vendor/html2wxml/vendor/Highlight/languages/step21.json: -------------------------------------------------------------------------------- 1 | {"aliases":["p21","step","stp"],"case_insensitive":true,"lexemes":"[A-Z_][A-Z0-9_.]*","keywords":{"keyword":"HEADER ENDSEC DATA"},"contains":[{"className":"meta","begin":"ISO-10303-21;","relevance":10},{"className":"meta","begin":"END-ISO-10303-21;","relevance":10},{"className":"comment","begin":"//","end":"$","contains":[{"begin":"\\b(a|an|the|are|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|they|like|more)\\b"},{"className":"doctag","begin":"(?:TODO|FIXME|NOTE|BUG|XXX):","relevance":0}]},{"className":"comment","begin":"/\\*","end":"\\*/","contains":[{"$ref":"#contains.2.contains.0"},{"className":"doctag","begin":"(?:TODO|FIXME|NOTE|BUG|XXX):","relevance":0}]},{"className":"comment","begin":"/\\*\\*!","end":"\\*/","contains":[{"$ref":"#contains.2.contains.0"},{"className":"doctag","begin":"(?:TODO|FIXME|NOTE|BUG|XXX):","relevance":0}]},{"className":"number","begin":"(-?)(\\b0[xX][a-fA-F0-9]+|(\\b\\d+(\\.\\d*)?|\\.\\d+)([eE][-+]?\\d+)?)","relevance":0},{"className":"string","begin":"'","end":"'","illegal":null,"contains":[{"begin":"\\\\[\\s\\S]","relevance":0}]},{"className":"string","begin":"\"","end":"\"","illegal":null,"contains":[{"$ref":"#contains.6.contains.0"},{"className":"subst","begin":"\\\\[abfnrtv]\\|\\\\x[0-9a-fA-F]*\\\\\\|%[-+# *.0-9]*[dioxXucsfeEgGp]","relevance":0},{"className":"subst","begin":"\\\\[abfnrtv]\\|\\\\x[0-9a-fA-F]*\\\\\\|%[-+# *.0-9]*[dioxXucsfeEgGp]","relevance":0}]},{"className":"string","begin":"'","end":"'"},{"className":"symbol","variants":[{"begin":"#","end":"\\d+","illegal":"\\W"}]}]} 2 | -------------------------------------------------------------------------------- /plugin/woocommerce-to-wechatapp-mini/vendor/html2wxml/vendor/Highlight/languages/subunit.json: -------------------------------------------------------------------------------- 1 | {"case_insensitive":true,"contains":[{"className":"string","begin":"\\[\n(multipart)?","end":"\\]\n"},{"className":"string","begin":"\\d{4}-\\d{2}-\\d{2}(\\s+)\\d{2}:\\d{2}:\\d{2}.\\d+Z"},{"className":"string","begin":"(\\+|-)\\d+"},{"className":"keyword","relevance":10,"variants":[{"begin":"^(test|testing|success|successful|failure|error|skip|xfail|uxsuccess)(:?)\\s+(test)?"},{"begin":"^progress(:?)(\\s+)?(pop|push)?"},{"begin":"^tags:"},{"begin":"^time:"}]}]} 2 | -------------------------------------------------------------------------------- /plugin/woocommerce-to-wechatapp-mini/vendor/html2wxml/vendor/Highlight/languages/taggerscript.json: -------------------------------------------------------------------------------- 1 | {"contains":[{"className":"comment","begin":"\\$noop\\(","end":"\\)","contains":[{"begin":"\\(","end":"\\)","contains":["self",{"begin":"\\\\."}]}],"relevance":10},{"className":"keyword","begin":"\\$(?!noop)[a-zA-Z][_a-zA-Z0-9]*","end":"\\(","excludeEnd":true},{"className":"variable","begin":"%[_a-zA-Z0-9:]*","end":"%"},{"className":"symbol","begin":"\\\\."}]} 2 | -------------------------------------------------------------------------------- /plugin/woocommerce-to-wechatapp-mini/vendor/html2wxml/vendor/Highlight/languages/tap.json: -------------------------------------------------------------------------------- 1 | {"case_insensitive":true,"contains":[{"className":"comment","begin":"#","end":"$","contains":[{"begin":"\\b(a|an|the|are|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|they|like|more)\\b"},{"className":"doctag","begin":"(?:TODO|FIXME|NOTE|BUG|XXX):","relevance":0}]},{"className":"meta","variants":[{"begin":"^TAP version (\\d+)$"},{"begin":"^1\\.\\.(\\d+)$"}]},{"begin":"(s+)?---$","end":"\\.\\.\\.$","subLanguage":"yaml","relevance":0},{"className":"number","begin":" (\\d+) "},{"className":"symbol","variants":[{"begin":"^ok"},{"begin":"^not ok"}]}]} 2 | -------------------------------------------------------------------------------- /plugin/woocommerce-to-wechatapp-mini/vendor/html2wxml/vendor/Highlight/languages/tex.json: -------------------------------------------------------------------------------- 1 | {"contains":[{"className":"tag","begin":"\\\\","relevance":0,"contains":[{"className":"name","variants":[{"begin":"[a-zA-Zа-яА-я]+[*]?"},{"begin":"[^a-zA-Zа-яА-я0-9]"}],"starts":{"endsWithParent":true,"relevance":0,"contains":[{"className":"string","variants":[{"begin":"\\[","end":"\\]"},{"begin":"\\{","end":"\\}"}]},{"begin":"\\s*=\\s*","endsWithParent":true,"relevance":0,"contains":[{"className":"number","begin":"-?\\d*\\.?\\d+(pt|pc|mm|cm|in|dd|cc|ex|em)?"}]}]}}]},{"className":"formula","contains":[{"$ref":"#contains.0"}],"relevance":0,"variants":[{"begin":"\\$\\$","end":"\\$\\$"},{"begin":"\\$","end":"\\$"}]},{"className":"comment","begin":"%","end":"$","contains":[{"begin":"\\b(a|an|the|are|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|they|like|more)\\b"},{"className":"doctag","begin":"(?:TODO|FIXME|NOTE|BUG|XXX):","relevance":0}],"relevance":0}]} 2 | -------------------------------------------------------------------------------- /plugin/woocommerce-to-wechatapp-mini/vendor/html2wxml/vendor/Highlight/languages/thrift.json: -------------------------------------------------------------------------------- 1 | {"keywords":{"keyword":"namespace const typedef struct enum service exception void oneway set list map required optional","built_in":"bool byte i16 i32 i64 double string binary","literal":"true false"},"contains":[{"className":"string","begin":"\"","end":"\"","illegal":"\\n","contains":[{"begin":"\\\\[\\s\\S]","relevance":0},{"className":"subst","begin":"\\\\[abfnrtv]\\|\\\\x[0-9a-fA-F]*\\\\\\|%[-+# *.0-9]*[dioxXucsfeEgGp]","relevance":0},{"className":"subst","begin":"\\\\[abfnrtv]\\|\\\\x[0-9a-fA-F]*\\\\\\|%[-+# *.0-9]*[dioxXucsfeEgGp]","relevance":0}]},{"className":"number","begin":"\\b\\d+(\\.\\d+)?","relevance":0},{"className":"comment","begin":"//","end":"$","contains":[{"begin":"\\b(a|an|the|are|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|they|like|more)\\b"},{"className":"doctag","begin":"(?:TODO|FIXME|NOTE|BUG|XXX):","relevance":0}]},{"className":"comment","begin":"/\\*","end":"\\*/","contains":[{"$ref":"#contains.2.contains.0"},{"className":"doctag","begin":"(?:TODO|FIXME|NOTE|BUG|XXX):","relevance":0}]},{"className":"class","beginKeywords":"struct enum service exception","end":"\\{","illegal":"\\n","contains":[{"className":"title","begin":"[a-zA-Z]\\w*","relevance":0,"starts":{"endsWithParent":true,"excludeEnd":true}}]},{"begin":"\\b(set|list|map)\\s*<","end":">","keywords":"bool byte i16 i32 i64 double string binary","contains":["self"]}]} 2 | -------------------------------------------------------------------------------- /plugin/woocommerce-to-wechatapp-mini/vendor/html2wxml/vendor/Highlight/languages/twig.json: -------------------------------------------------------------------------------- 1 | {"aliases":["craftcms"],"case_insensitive":true,"subLanguage":"xml","contains":[{"className":"comment","begin":"\\{#","end":"#}","contains":[{"begin":"\\b(a|an|the|are|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|they|like|more)\\b"},{"className":"doctag","begin":"(?:TODO|FIXME|NOTE|BUG|XXX):","relevance":0}]},{"className":"template-tag","begin":"\\{%","end":"%}","contains":[{"className":"name","begin":"\\w+","keywords":"autoescape block do embed extends filter flush for if import include macro sandbox set spaceless use verbatim endautoescape endblock enddo endembed endextends endfilter endflush endfor endif endimport endinclude endmacro endsandbox endset endspaceless enduse endverbatim","starts":{"endsWithParent":true,"contains":[{"begin":"\\|[A-Za-z_]+:?","keywords":"abs batch capitalize convert_encoding date date_modify default escape first format join json_encode keys last length lower merge nl2br number_format raw replace reverse round slice sort split striptags title trim upper url_encode","contains":[{"beginKeywords":"attribute block constant cycle date dump include max min parent random range source template_from_string","keywords":{"name":"attribute block constant cycle date dump include max min parent random range source template_from_string"},"relevance":0,"contains":[{"className":"params","begin":"\\(","end":"\\)"}]}]},{"$ref":"#contains.1.contains.0.starts.contains.0.contains.0"}],"relevance":0}}]},{"className":"template-variable","begin":"\\{\\{","end":"}}","contains":["self",{"$ref":"#contains.1.contains.0.starts.contains.0"},{"$ref":"#contains.1.contains.0.starts.contains.0.contains.0"}]}]} 2 | -------------------------------------------------------------------------------- /plugin/woocommerce-to-wechatapp-mini/vendor/html2wxml/vendor/Highlight/languages/vbscript-html.json: -------------------------------------------------------------------------------- 1 | {"subLanguage":"xml","contains":[{"begin":"<%","end":"%>","subLanguage":"vbscript"}]} 2 | -------------------------------------------------------------------------------- /plugin/woocommerce-to-wechatapp-mini/vendor/html2wxml/vendor/Highlight/languages/xml.json: -------------------------------------------------------------------------------- 1 | {"aliases":["html","xhtml","rss","atom","xjb","xsd","xsl","plist"],"case_insensitive":true,"contains":[{"className":"meta","begin":"","relevance":10,"contains":[{"begin":"\\[","end":"\\]"}]},{"className":"comment","begin":"","contains":[{"begin":"\\b(a|an|the|are|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|they|like|more)\\b"},{"className":"doctag","begin":"(?:TODO|FIXME|NOTE|BUG|XXX):","relevance":0}],"relevance":10},{"begin":"<\\!\\[CDATA\\[","end":"\\]\\]>","relevance":10},{"begin":"<\\?(php)?","end":"\\?>","subLanguage":"php","contains":[{"begin":"/\\*","end":"\\*/","skip":true}]},{"className":"tag","begin":"","returnEnd":true,"subLanguage":["css","xml"]}},{"className":"tag","begin":"","returnEnd":true,"subLanguage":["actionscript","javascript","handlebars","xml"]}},{"className":"meta","variants":[{"begin":"<\\?xml","end":"\\?>","relevance":10},{"begin":"<\\?\\w+","end":"\\?>"}]},{"className":"tag","begin":"?","end":"/?>","contains":[{"className":"name","begin":"[^\\/><\\s]+","relevance":0},{"$ref":"#contains.4.contains.0"}]}]} 2 | -------------------------------------------------------------------------------- /plugin/woocommerce-to-wechatapp-mini/vendor/html2wxml/vendor/Highlight/languages/xquery.json: -------------------------------------------------------------------------------- 1 | {"aliases":["xpath","xq"],"case_insensitive":false,"lexemes":"[a-zA-Z\\$][a-zA-Z0-9_:\\-]*","illegal":"(proc)|(abstract)|(extends)|(until)|(#)","keywords":{"keyword":"for let if while then else return where group by xquery encoding versionmodule namespace boundary-space preserve strip default collation base-uri orderingcopy-namespaces order declare import schema namespace function option in allowing emptyat tumbling window sliding window start when only end when previous next stable ascendingdescending empty greatest least some every satisfies switch case typeswitch try catch andor to union intersect instance of treat as castable cast map array delete insert intoreplace value rename copy modify update","literal":"false true xs:string xs:integer element item xs:date xs:datetime xs:float xs:double xs:decimal QName xs:anyURI xs:long xs:int xs:short xs:byte attribute"},"contains":[{"begin":"\\$[a-zA-Z0-9\\-]+"},{"className":"string","variants":[{"begin":"\"","end":"\"","contains":[{"begin":"\"\"","relevance":0}]},{"begin":"'","end":"'","contains":[{"begin":"''","relevance":0}]}]},{"className":"number","begin":"(\\b0[0-7_]+)|(\\b0x[0-9a-fA-F_]+)|(\\b[1-9][0-9_]*(\\.[0-9_]+)?)|[0_]\\b","relevance":0},{"className":"comment","begin":"\\(:","end":":\\)","relevance":10,"contains":[{"className":"doctag","begin":"@\\w+"}]},{"className":"meta","begin":"%\\w+"},{"begin":"{","end":"}","contains":{"$ref":"#contains"}}]} 2 | -------------------------------------------------------------------------------- /plugin/woocommerce-to-wechatapp-mini/vendor/html2wxml/vendor/Highlight/languages/yaml.json: -------------------------------------------------------------------------------- 1 | {"case_insensitive":true,"aliases":["yml","YAML","yaml"],"contains":[{"className":"attr","variants":[{"begin":"^[ \\-]*[a-zA-Z_][\\w\\-]*:"},{"begin":"^[ \\-]*\"[a-zA-Z_][\\w\\-]*\":"},{"begin":"^[ \\-]*'[a-zA-Z_][\\w\\-]*':"}]},{"className":"meta","begin":"^---s*$","relevance":10},{"className":"string","begin":"[\\|>] *$","returnEnd":true,"contains":[{"begin":"\\\\[\\s\\S]","relevance":0},{"className":"template-variable","variants":[{"begin":"{{","end":"}}"},{"begin":"%{","end":"}"}]}],"end":"^[ \\-]*[a-zA-Z_][\\w\\-]*:"},{"begin":"<%[%=-]?","end":"[%-]?%>","subLanguage":"ruby","excludeBegin":true,"excludeEnd":true,"relevance":0},{"className":"type","begin":"!![a-zA-Z_]\\w*"},{"className":"meta","begin":"&[a-zA-Z_]\\w*$"},{"className":"meta","begin":"\\*[a-zA-Z_]\\w*$"},{"className":"bullet","begin":"^ *-","relevance":0},{"className":"comment","begin":"#","end":"$","contains":[{"begin":"\\b(a|an|the|are|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|they|like|more)\\b"},{"className":"doctag","begin":"(?:TODO|FIXME|NOTE|BUG|XXX):","relevance":0}]},{"beginKeywords":"true false yes no null","keywords":{"literal":"true false yes no null"}},{"className":"number","begin":"(-?)(\\b0[xX][a-fA-F0-9]+|(\\b\\d+(\\.\\d*)?|\\.\\d+)([eE][-+]?\\d+)?)","relevance":0},{"className":"string","relevance":0,"variants":[{"begin":"'","end":"'"},{"begin":"\"","end":"\""},{"begin":"\\S+"}],"contains":{"$ref":"#contains.2.contains"}}]} 2 | -------------------------------------------------------------------------------- /plugin/woocommerce-to-wechatapp-mini/vendor/plugin-update-checker-4.6/.editorconfig: -------------------------------------------------------------------------------- 1 | [*] 2 | charset=utf-8 3 | end_of_line=lf 4 | insert_final_newline=false 5 | indent_style=tab 6 | tab_width=4 7 | 8 | [{phpunit.xml.dist,*.jhm,*.xslt,*.xul,*.rng,*.xsl,*.xsd,*.ant,*.tld,*.fxml,*.jrxml,*.xml,*.jnlp,*.wsdl}] 9 | indent_style=space 10 | indent_size=4 11 | 12 | [*.svg] 13 | indent_style=space 14 | indent_size=4 15 | 16 | -------------------------------------------------------------------------------- /plugin/woocommerce-to-wechatapp-mini/vendor/plugin-update-checker-4.6/Puc/v4/Factory.php: -------------------------------------------------------------------------------- 1 | rootDir = dirname(__FILE__) . '/'; 14 | $nameParts = explode('_', __CLASS__, 3); 15 | $this->prefix = $nameParts[0] . '_' . $nameParts[1] . '_'; 16 | 17 | $this->libraryDir = realpath($this->rootDir . '../..') . '/'; 18 | $this->staticMap = array( 19 | 'PucReadmeParser' => 'vendor/readme-parser.php', 20 | 'Parsedown' => 'vendor/ParsedownLegacy.php', 21 | ); 22 | if ( version_compare(PHP_VERSION, '5.3.0', '>=') ) { 23 | $this->staticMap['Parsedown'] = 'vendor/Parsedown.php'; 24 | } 25 | 26 | spl_autoload_register(array($this, 'autoload')); 27 | } 28 | 29 | public function autoload($className) { 30 | if ( isset($this->staticMap[$className]) && file_exists($this->libraryDir . $this->staticMap[$className]) ) { 31 | /** @noinspection PhpIncludeInspection */ 32 | include ($this->libraryDir . $this->staticMap[$className]); 33 | return; 34 | } 35 | 36 | if (strpos($className, $this->prefix) === 0) { 37 | $path = substr($className, strlen($this->prefix)); 38 | $path = str_replace('_', '/', $path); 39 | $path = $this->rootDir . $path . '.php'; 40 | 41 | if (file_exists($path)) { 42 | /** @noinspection PhpIncludeInspection */ 43 | include $path; 44 | } 45 | } 46 | } 47 | } 48 | 49 | endif; -------------------------------------------------------------------------------- /plugin/woocommerce-to-wechatapp-mini/vendor/plugin-update-checker-4.6/Puc/v4p6/DebugBar/PluginExtension.php: -------------------------------------------------------------------------------- 1 | updateChecker->getUniqueName('uid') ) { 19 | return; 20 | } 21 | $this->preAjaxRequest(); 22 | $info = $this->updateChecker->requestInfo(); 23 | if ( $info !== null ) { 24 | echo 'Successfully retrieved plugin info from the metadata URL:'; 25 | echo '
', htmlentities(print_r($info, true)), ''; 26 | } else { 27 | echo 'Failed to retrieve plugin info from the metadata URL.'; 28 | } 29 | exit; 30 | } 31 | } 32 | 33 | endif; -------------------------------------------------------------------------------- /plugin/woocommerce-to-wechatapp-mini/vendor/plugin-update-checker-4.6/Puc/v4p6/DebugBar/PluginPanel.php: -------------------------------------------------------------------------------- 1 | row('Plugin file', htmlentities($this->updateChecker->pluginFile)); 13 | parent::displayConfigHeader(); 14 | } 15 | 16 | protected function getMetadataButton() { 17 | $requestInfoButton = ''; 18 | if ( function_exists('get_submit_button') ) { 19 | $requestInfoButton = get_submit_button( 20 | 'Request Info', 21 | 'secondary', 22 | 'puc-request-info-button', 23 | false, 24 | array('id' => $this->updateChecker->getUniqueName('request-info-button')) 25 | ); 26 | } 27 | return $requestInfoButton; 28 | } 29 | 30 | protected function getUpdateFields() { 31 | return array_merge( 32 | parent::getUpdateFields(), 33 | array('homepage', 'upgrade_notice', 'tested',) 34 | ); 35 | } 36 | } 37 | 38 | endif; -------------------------------------------------------------------------------- /plugin/woocommerce-to-wechatapp-mini/vendor/plugin-update-checker-4.6/Puc/v4p6/DebugBar/ThemePanel.php: -------------------------------------------------------------------------------- 1 | row('Theme directory', htmlentities($this->updateChecker->directoryName)); 13 | parent::displayConfigHeader(); 14 | } 15 | 16 | protected function getUpdateFields() { 17 | return array_merge(parent::getUpdateFields(), array('details_url')); 18 | } 19 | } 20 | 21 | endif; -------------------------------------------------------------------------------- /plugin/woocommerce-to-wechatapp-mini/vendor/plugin-update-checker-4.6/Puc/v4p6/Update.php: -------------------------------------------------------------------------------- 1 | slug = $this->slug; 27 | $update->new_version = $this->version; 28 | $update->package = $this->download_url; 29 | 30 | return $update; 31 | } 32 | } 33 | 34 | endif; -------------------------------------------------------------------------------- /plugin/woocommerce-to-wechatapp-mini/vendor/plugin-update-checker-4.6/Puc/v4p6/Vcs/BaseChecker.php: -------------------------------------------------------------------------------- 1 | properties = $properties; 21 | } 22 | 23 | /** 24 | * @param string $name 25 | * @return mixed|null 26 | */ 27 | public function __get($name) { 28 | return array_key_exists($name, $this->properties) ? $this->properties[$name] : null; 29 | } 30 | 31 | /** 32 | * @param string $name 33 | * @param mixed $value 34 | */ 35 | public function __set($name, $value) { 36 | $this->properties[$name] = $value; 37 | } 38 | 39 | /** 40 | * @param string $name 41 | * @return bool 42 | */ 43 | public function __isset($name) { 44 | return isset($this->properties[$name]); 45 | } 46 | 47 | } 48 | 49 | endif; -------------------------------------------------------------------------------- /plugin/woocommerce-to-wechatapp-mini/vendor/plugin-update-checker-4.6/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "yahnis-elsts/plugin-update-checker", 3 | "type": "library", 4 | "description": "A custom update checker for WordPress plugins and themes. Useful if you can't host your plugin in the official WP repository but still want it to support automatic updates.", 5 | "keywords": ["wordpress", "plugin updates", "automatic updates", "theme updates"], 6 | "homepage": "https://github.com/YahnisElsts/plugin-update-checker/", 7 | "license": "MIT", 8 | "authors": [ 9 | { 10 | "name": "Yahnis Elsts", 11 | "email": "whiteshadow@w-shadow.com", 12 | "homepage": "http://w-shadow.com/", 13 | "role": "Developer" 14 | } 15 | ], 16 | "require": { 17 | "php": ">=5.2.0" 18 | }, 19 | "autoload": { 20 | "files": ["plugin-update-checker.php"] 21 | } 22 | } -------------------------------------------------------------------------------- /plugin/woocommerce-to-wechatapp-mini/vendor/plugin-update-checker-4.6/css/puc-debug-bar.css: -------------------------------------------------------------------------------- 1 | .puc-debug-bar-panel-v4 pre { 2 | margin-top: 0; 3 | } 4 | 5 | /* Style the debug data table to match "widefat" table style used by WordPress. */ 6 | table.puc-debug-data { 7 | width: 100%; 8 | clear: both; 9 | margin: 0; 10 | 11 | border-spacing: 0; 12 | background-color: #f9f9f9; 13 | 14 | border-radius: 3px; 15 | border: 1px solid #dfdfdf; 16 | border-collapse: separate; 17 | } 18 | 19 | table.puc-debug-data * { 20 | word-wrap: break-word; 21 | } 22 | 23 | table.puc-debug-data th { 24 | width: 11em; 25 | padding: 7px 7px 8px; 26 | text-align: left; 27 | 28 | font-family: "Georgia", "Times New Roman", "Bitstream Charter", "Times", serif; 29 | font-weight: 400; 30 | font-size: 14px; 31 | line-height: 1.3em; 32 | text-shadow: rgba(255, 255, 255, 0.804) 0 1px 0; 33 | } 34 | 35 | table.puc-debug-data td, table.puc-debug-data th { 36 | border-width: 1px 0; 37 | border-style: solid; 38 | 39 | border-top-color: #fff; 40 | border-bottom-color: #dfdfdf; 41 | 42 | text-transform: none; 43 | } 44 | 45 | table.puc-debug-data td { 46 | color: #555; 47 | font-size: 12px; 48 | padding: 4px 7px 2px; 49 | vertical-align: top; 50 | } 51 | 52 | .puc-ajax-response { 53 | border: 1px solid #dfdfdf; 54 | border-radius: 3px; 55 | padding: 0.5em; 56 | margin: 5px 0; 57 | background-color: white; 58 | } 59 | 60 | .puc-ajax-nonce { 61 | display: none; 62 | } 63 | 64 | .puc-ajax-response dt { 65 | margin: 0; 66 | } 67 | 68 | .puc-ajax-response dd { 69 | margin: 0 0 1em; 70 | } 71 | -------------------------------------------------------------------------------- /plugin/woocommerce-to-wechatapp-mini/vendor/plugin-update-checker-4.6/examples/theme.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0", 3 | "details_url": "http://example.com/version-2.0-details.html", 4 | "download_url": "http://example.com/example-theme-2.0.zip" 5 | } -------------------------------------------------------------------------------- /plugin/woocommerce-to-wechatapp-mini/vendor/plugin-update-checker-4.6/languages/plugin-update-checker-cs_CZ.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwqoffice/woocommerce-to-wechatapp-mini/78e1bca0f93af4c0d57312104bc6368a521774e4/plugin/woocommerce-to-wechatapp-mini/vendor/plugin-update-checker-4.6/languages/plugin-update-checker-cs_CZ.mo -------------------------------------------------------------------------------- /plugin/woocommerce-to-wechatapp-mini/vendor/plugin-update-checker-4.6/languages/plugin-update-checker-cs_CZ.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: plugin-update-checker\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2017-05-20 10:53+0300\n" 6 | "PO-Revision-Date: 2017-07-05 15:39+0000\n" 7 | "Last-Translator: Vojtěch Sajdl