mm_os 1.3.3 → 1.3.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.en.md +36 -0
- package/README.md +25 -166
- package/conf.json +3 -0
- package/core/base/index.js +29 -0
- package/core/base/mqtt/index.js +268 -0
- package/core/base/mqtt/lib.js +40 -0
- package/core/base/web/index.js +110 -0
- package/core/com/api/com.json +4 -0
- package/{bin → core}/com/api/config.tpl.json +9 -7
- package/{bin → core}/com/api/drive.js +239 -64
- package/{bin → core}/com/api/index.js +8 -9
- package/{bin → core}/com/api/oauth.js +23 -14
- package/core/com/api/script.js +32 -0
- package/core/com/db/com.json +4 -0
- package/{bin → core}/com/db/drive.js +99 -65
- package/{bin → core}/com/db/index.js +2 -2
- package/core/com/event/com.json +4 -0
- package/{bin → core}/com/event/config.tpl.json +2 -2
- package/core/com/event/drive.js +125 -0
- package/{bin → core}/com/event/index.js +5 -10
- package/core/com/event/script.js +26 -0
- package/core/com/eventer/com.js +450 -0
- package/core/com/eventer/com.json +4 -0
- package/core/com/middleware/com.js +128 -0
- package/core/com/middleware/com.json +4 -0
- package/core/com/middleware/config.tpl.json +8 -0
- package/core/com/middleware/script.js +9 -0
- package/core/com/mqtt/com.json +4 -0
- package/core/com/mqtt/config.tpl.json +12 -0
- package/core/com/mqtt/drive.js +139 -0
- package/core/com/mqtt/index.js +138 -0
- package/core/com/mqtt/script.js +33 -0
- package/core/com/msg/com.js +296 -0
- package/core/com/msg/com.json +4 -0
- package/{bin → core}/com/nav/drive.js +42 -17
- package/{bin → core}/com/nav/index.js +4 -4
- package/core/com/nav/tpl/admin_pc/page_channel.vue +299 -0
- package/core/com/nav/tpl/admin_pc/page_config.vue +279 -0
- package/core/com/nav/tpl/admin_pc/page_config_form.vue +194 -0
- package/core/com/nav/tpl/admin_pc/page_default.vue +287 -0
- package/core/com/nav/tpl/admin_pc/page_form.vue +180 -0
- package/core/com/nav/tpl/admin_pc/page_lang.vue +265 -0
- package/core/com/nav/tpl/admin_pc/page_nav.vue +313 -0
- package/core/com/nav/tpl/admin_pc/page_table.vue +285 -0
- package/core/com/nav/tpl/admin_pc/page_type.vue +313 -0
- package/core/com/nav/tpl/dev_pc/page_channel.vue +253 -0
- package/core/com/nav/tpl/dev_pc/page_config.vue +253 -0
- package/core/com/nav/tpl/dev_pc/page_default.vue +247 -0
- package/core/com/nav/tpl/dev_pc/page_form.vue +162 -0
- package/core/com/nav/tpl/dev_pc/page_nav.vue +253 -0
- package/core/com/nav/tpl/dev_pc/page_table.vue +247 -0
- package/core/com/nav/tpl/dev_pc/page_type.vue +253 -0
- package/{bin/com/nav/tpl/home_phone → core/com/nav/tpl/home_pc}/page_channel.vue +231 -231
- package/{bin/com/nav/tpl/home_phone → core/com/nav/tpl/home_pc}/page_default.vue +231 -231
- package/{bin → core}/com/nav/tpl/home_pc/page_form.vue +9 -9
- package/{bin → core}/com/nav/tpl/home_pc/page_list.vue +231 -231
- package/{bin → core}/com/nav/tpl/home_pc/page_nav.vue +221 -221
- package/{bin/com/nav/tpl/home_phone → core/com/nav/tpl/home_pc}/page_type.vue +231 -231
- package/{bin → core}/com/nav/tpl/home_pc/page_view.vue +8 -8
- package/{bin/com/nav/tpl/home_pc → core/com/nav/tpl/home_phone}/page_channel.vue +231 -231
- package/{bin/com/nav/tpl/home_pc → core/com/nav/tpl/home_phone}/page_default.vue +231 -231
- package/{bin → core}/com/nav/tpl/home_phone/page_form.vue +9 -9
- package/{bin → core}/com/nav/tpl/home_phone/page_list.vue +231 -231
- package/{bin/com/nav/tpl/admin_pc → core/com/nav/tpl/home_phone}/page_nav.vue +236 -220
- package/{bin/com/nav/tpl/home_pc → core/com/nav/tpl/home_phone}/page_type.vue +231 -231
- package/{bin → core}/com/nav/tpl/home_phone/page_view.vue +8 -8
- package/core/com/nav/viewmodel.js +296 -0
- package/{bin → core}/com/param/config.tpl.json +24 -0
- package/{bin → core}/com/param/drive.js +47 -15
- package/core/com/plugin/com.json +4 -0
- package/core/com/plugin/config.tpl.json +20 -0
- package/{bin → core}/com/plugin/drive.js +5 -8
- package/{bin → core}/com/plugin/index.js +11 -56
- package/core/com/socket/README.md +47 -0
- package/core/com/socket/com.json +4 -0
- package/core/com/socket/config.tpl.json +14 -0
- package/{bin → core}/com/socket/drive.js +74 -51
- package/{bin → core}/com/socket/index.js +4 -2
- package/{bin → core}/com/socket/script.js +8 -6
- package/core/com/sql/config.tpl.json +70 -0
- package/{bin → core}/com/sql/drive.js +281 -58
- package/core/com/static/com.json +4 -0
- package/core/com/static/config.tpl.json +20 -0
- package/{bin → core}/com/static/drive.js +6 -4
- package/{bin → core}/com/static/index.js +5 -1
- package/core/com/task/com.json +4 -0
- package/core/com/task/config.tpl.json +24 -0
- package/core/com/task/drive.js +374 -0
- package/{bin → core}/com/task/index.js +14 -20
- package/core/com/task/script.js +37 -0
- package/core/com/timer/com.js +217 -0
- package/core/com/timer/com.json +4 -0
- package/core/com/tpl/com.js +19 -0
- package/core/com/tpl/com.json +4 -0
- package/index.js +161 -740
- package/lib/actions.js +50 -0
- package/lib/app.js +73 -0
- package/lib/base.js +355 -0
- package/lib/com.js +31 -0
- package/lib/game.js +31 -0
- package/lib/ref.js +121 -0
- package/middleware/cors/index.js +57 -0
- package/middleware/cors/middleware.json +7 -0
- package/middleware/mqtt_base/index.js +10 -0
- package/middleware/mqtt_base/middleware.json +8 -0
- package/{waf.js → middleware/waf/index.js} +12 -2
- package/middleware/waf/middleware.json +9 -0
- package/middleware/web_base/index.js +67 -0
- package/middleware/web_base/middleware.json +9 -0
- package/middleware/web_event/index.js +411 -0
- package/middleware/web_event/middleware.json +10 -0
- package/middleware/web_proxy/index.js +24 -0
- package/middleware/web_proxy/middleware.json +9 -0
- package/middleware/web_router/index.js +33 -0
- package/middleware/web_router/middleware.json +10 -0
- package/middleware/web_socket/index.js +21 -0
- package/middleware/web_socket/middleware.json +9 -0
- package/middleware/web_static/index.js +26 -0
- package/middleware/web_static/middleware.json +9 -0
- package/nodemon.json +12 -2
- package/package.json +56 -66
- package/.gitattributes +0 -5
- package/bin/com/README.md +0 -2
- package/bin/com/api/script.js +0 -14
- package/bin/com/cmd/README.md +0 -3
- package/bin/com/cmd/config.tpl.json +0 -41
- package/bin/com/cmd/drive.js +0 -512
- package/bin/com/cmd/index.js +0 -213
- package/bin/com/cmd/old/5w2h.js +0 -54
- package/bin/com/cmd/old/drive.js +0 -423
- package/bin/com/cmd/script.js +0 -11
- package/bin/com/event/drive.js +0 -69
- package/bin/com/event/script.js +0 -12
- package/bin/com/nav/tpl/admin_pc/page_channel.vue +0 -234
- package/bin/com/nav/tpl/admin_pc/page_default.vue +0 -236
- package/bin/com/nav/tpl/admin_pc/page_form.vue +0 -152
- package/bin/com/nav/tpl/admin_pc/page_table.vue +0 -236
- package/bin/com/nav/tpl/admin_pc/page_type.vue +0 -234
- package/bin/com/nav/tpl/home_phone/page_nav.vue +0 -221
- package/bin/com/nav/viewmodel.js +0 -161
- package/bin/com/plugin/config.tpl.json +0 -11
- package/bin/com/socket/config.tpl.json +0 -8
- package/bin/com/sql/config.tpl.json +0 -34
- package/bin/com/static/config.tpl.json +0 -11
- package/bin/com/task/config.tpl.json +0 -13
- package/bin/com/task/drive.js +0 -288
- package/bin/com/task/script.js +0 -38
- package/bin/com.js +0 -74
- package/bin/mm.conf +0 -48
- package/bin/static/404.html +0 -52
- package/bin/static/README.md +0 -1
- package/bin/static/css/font-awesome.min.css +0 -7
- package/bin/static/css/mm_base.css +0 -220
- package/bin/static/css/mm_common.css +0 -518
- package/bin/static/css/mm_component.css +0 -307
- package/bin/static/css/mm_expand.css +0 -634
- package/bin/static/css/mm_theme.css +0 -291
- package/bin/static/css/new_file.css +0 -79
- package/bin/static/css/swiper.min.css +0 -12
- package/bin/static/favicon.ico +0 -0
- package/bin/static/font/FontAwesome.otf +0 -0
- package/bin/static/font/HelveticaNeue.eot +0 -0
- package/bin/static/font/HelveticaNeue.otf +0 -0
- package/bin/static/font/HelveticaNeue.svg +0 -1273
- package/bin/static/font/HelveticaNeue.woff +0 -0
- package/bin/static/font/HelveticaNeue.woff2 +0 -0
- package/bin/static/font/fontawesome-webfont.eot +0 -0
- package/bin/static/font/fontawesome-webfont.svg +0 -2671
- package/bin/static/font/fontawesome-webfont.ttf +0 -0
- package/bin/static/font/fontawesome-webfont.woff +0 -0
- package/bin/static/font/fontawesome-webfont.woff2 +0 -0
- package/bin/static/h5.html +0 -325
- package/bin/static/highlight/highlight.pack.js +0 -2
- package/bin/static/highlight/styles/a11y-dark.css +0 -99
- package/bin/static/highlight/styles/a11y-light.css +0 -99
- package/bin/static/highlight/styles/agate.css +0 -108
- package/bin/static/highlight/styles/an-old-hope.css +0 -89
- package/bin/static/highlight/styles/androidstudio.css +0 -66
- package/bin/static/highlight/styles/arduino-light.css +0 -88
- package/bin/static/highlight/styles/arta.css +0 -73
- package/bin/static/highlight/styles/ascetic.css +0 -45
- package/bin/static/highlight/styles/atelier-cave-dark.css +0 -83
- package/bin/static/highlight/styles/atelier-cave-light.css +0 -85
- package/bin/static/highlight/styles/atelier-dune-dark.css +0 -69
- package/bin/static/highlight/styles/atelier-dune-light.css +0 -69
- package/bin/static/highlight/styles/atelier-estuary-dark.css +0 -84
- package/bin/static/highlight/styles/atelier-estuary-light.css +0 -84
- package/bin/static/highlight/styles/atelier-forest-dark.css +0 -69
- package/bin/static/highlight/styles/atelier-forest-light.css +0 -69
- package/bin/static/highlight/styles/atelier-heath-dark.css +0 -69
- package/bin/static/highlight/styles/atelier-heath-light.css +0 -69
- package/bin/static/highlight/styles/atelier-lakeside-dark.css +0 -69
- package/bin/static/highlight/styles/atelier-lakeside-light.css +0 -69
- package/bin/static/highlight/styles/atelier-plateau-dark.css +0 -84
- package/bin/static/highlight/styles/atelier-plateau-light.css +0 -84
- package/bin/static/highlight/styles/atelier-savanna-dark.css +0 -84
- package/bin/static/highlight/styles/atelier-savanna-light.css +0 -84
- package/bin/static/highlight/styles/atelier-seaside-dark.css +0 -69
- package/bin/static/highlight/styles/atelier-seaside-light.css +0 -69
- package/bin/static/highlight/styles/atelier-sulphurpool-dark.css +0 -69
- package/bin/static/highlight/styles/atelier-sulphurpool-light.css +0 -69
- package/bin/static/highlight/styles/atom-one-dark-reasonable.css +0 -77
- package/bin/static/highlight/styles/atom-one-dark.css +0 -96
- package/bin/static/highlight/styles/atom-one-light.css +0 -96
- package/bin/static/highlight/styles/brown-paper.css +0 -64
- package/bin/static/highlight/styles/brown-papersq.png +0 -0
- package/bin/static/highlight/styles/codepen-embed.css +0 -60
- package/bin/static/highlight/styles/color-brewer.css +0 -71
- package/bin/static/highlight/styles/darcula.css +0 -77
- package/bin/static/highlight/styles/dark.css +0 -63
- package/bin/static/highlight/styles/darkula.css +0 -6
- package/bin/static/highlight/styles/default.css +0 -99
- package/bin/static/highlight/styles/docco.css +0 -97
- package/bin/static/highlight/styles/dracula.css +0 -76
- package/bin/static/highlight/styles/far.css +0 -71
- package/bin/static/highlight/styles/foundation.css +0 -88
- package/bin/static/highlight/styles/github-gist.css +0 -79
- package/bin/static/highlight/styles/github.css +0 -99
- package/bin/static/highlight/styles/gml.css +0 -78
- package/bin/static/highlight/styles/googlecode.css +0 -89
- package/bin/static/highlight/styles/grayscale.css +0 -101
- package/bin/static/highlight/styles/gruvbox-dark.css +0 -108
- package/bin/static/highlight/styles/gruvbox-light.css +0 -108
- package/bin/static/highlight/styles/hopscotch.css +0 -83
- package/bin/static/highlight/styles/hybrid.css +0 -102
- package/bin/static/highlight/styles/idea.css +0 -97
- package/bin/static/highlight/styles/ir-black.css +0 -73
- package/bin/static/highlight/styles/isbl-editor-dark.css +0 -112
- package/bin/static/highlight/styles/isbl-editor-light.css +0 -112
- package/bin/static/highlight/styles/kimbie.dark.css +0 -74
- package/bin/static/highlight/styles/kimbie.light.css +0 -74
- package/bin/static/highlight/styles/lightfair.css +0 -87
- package/bin/static/highlight/styles/magula.css +0 -70
- package/bin/static/highlight/styles/mono-blue.css +0 -59
- package/bin/static/highlight/styles/monokai-sublime.css +0 -83
- package/bin/static/highlight/styles/monokai.css +0 -70
- package/bin/static/highlight/styles/nord.css +0 -309
- package/bin/static/highlight/styles/obsidian.css +0 -88
- package/bin/static/highlight/styles/ocean.css +0 -74
- package/bin/static/highlight/styles/paraiso-dark.css +0 -72
- package/bin/static/highlight/styles/paraiso-light.css +0 -72
- package/bin/static/highlight/styles/pojoaque.css +0 -83
- package/bin/static/highlight/styles/pojoaque.jpg +0 -0
- package/bin/static/highlight/styles/purebasic.css +0 -96
- package/bin/static/highlight/styles/qtcreator_dark.css +0 -83
- package/bin/static/highlight/styles/qtcreator_light.css +0 -83
- package/bin/static/highlight/styles/railscasts.css +0 -106
- package/bin/static/highlight/styles/rainbow.css +0 -85
- package/bin/static/highlight/styles/routeros.css +0 -108
- package/bin/static/highlight/styles/school-book.css +0 -69
- package/bin/static/highlight/styles/school-book.png +0 -0
- package/bin/static/highlight/styles/shades-of-purple.css +0 -97
- package/bin/static/highlight/styles/solarized-dark.css +0 -84
- package/bin/static/highlight/styles/solarized-light.css +0 -84
- package/bin/static/highlight/styles/sunburst.css +0 -102
- package/bin/static/highlight/styles/tomorrow-night-blue.css +0 -75
- package/bin/static/highlight/styles/tomorrow-night-bright.css +0 -74
- package/bin/static/highlight/styles/tomorrow-night-eighties.css +0 -74
- package/bin/static/highlight/styles/tomorrow-night.css +0 -75
- package/bin/static/highlight/styles/tomorrow.css +0 -72
- package/bin/static/highlight/styles/vs.css +0 -68
- package/bin/static/highlight/styles/vs2015.css +0 -115
- package/bin/static/highlight/styles/xcode.css +0 -104
- package/bin/static/highlight/styles/xt256.css +0 -92
- package/bin/static/highlight/styles/zenburn.css +0 -80
- package/bin/static/highlight/vue-highlight.js +0 -29
- package/bin/static/ifame.html +0 -24
- package/bin/static/img/add.png +0 -0
- package/bin/static/img/avatar.png +0 -0
- package/bin/static/img/banner_2.png +0 -0
- package/bin/static/img/default.png +0 -0
- package/bin/static/img/loading.svg +0 -1
- package/bin/static/img/logo.png +0 -0
- package/bin/static/img/logo1.png +0 -0
- package/bin/static/img/logo_gray.png +0 -0
- package/bin/static/img/logo_round.png +0 -0
- package/bin/static/img/mm.ico +0 -0
- package/bin/static/img/mm.jpg +0 -0
- package/bin/static/img/select.png +0 -0
- package/bin/static/img/web.png +0 -0
- package/bin/static/index.html +0 -12
- package/bin/static/js/clipboard.min.js +0 -257
- package/bin/static/js/css.min.js +0 -1
- package/bin/static/js/echarts.js +0 -22
- package/bin/static/js/html5.min.js +0 -1
- package/bin/static/js/jquery.lazyload.min.js +0 -2
- package/bin/static/js/jquery.min.js +0 -4189
- package/bin/static/js/jquery.scrollstop.min.js +0 -2
- package/bin/static/js/mm-requirejs-vue.js +0 -283
- package/bin/static/js/mm_check.js +0 -490
- package/bin/static/js/mm_flexble.js +0 -112
- package/bin/static/js/mm_picker.js +0 -1417
- package/bin/static/js/mm_pinyinlite.js +0 -873
- package/bin/static/js/mm_sdk.js +0 -2841
- package/bin/static/js/mm_ui_expand.js +0 -468
- package/bin/static/js/mm_vue.js +0 -376
- package/bin/static/js/mm_vue_ui.js +0 -2375
- package/bin/static/js/mm_websocket.js +0 -145
- package/bin/static/js/require.js +0 -5
- package/bin/static/js/sortable.min.js +0 -3
- package/bin/static/js/swiper.min.js +0 -13
- package/bin/static/js/text.min.js +0 -1
- package/bin/static/js/vue-router.min.js +0 -6
- package/bin/static/js/vue.js +0 -12338
- package/bin/static/js/vuedraggable.min.js +0 -2
- package/bin/static/js/vuex.min.js +0 -6
- package/bin/static/src/components/bar/mm_action.vue +0 -19
- package/bin/static/src/components/bar/mm_buy.vue +0 -19
- package/bin/static/src/components/bar/mm_chat.vue +0 -18
- package/bin/static/src/components/bar/mm_count.vue +0 -18
- package/bin/static/src/components/bar/mm_filter.vue +0 -18
- package/bin/static/src/components/bar/mm_search.vue +0 -18
- package/bin/static/src/components/bar/mm_sort.vue +0 -18
- package/bin/static/src/components/bar/mm_tag.vue +0 -18
- package/bin/static/src/components/bar/mm_title.vue +0 -19
- package/bin/static/src/components/content/mm_pre.vue +0 -70
- package/bin/static/src/components/expand/mm_drag.vue +0 -39
- package/bin/static/src/components/item/mm_article.vue +0 -115
- package/bin/static/src/components/item/mm_base.vue +0 -26
- package/bin/static/src/components/item/mm_contact.vue +0 -25
- package/bin/static/src/components/item/mm_goods.vue +0 -23
- package/bin/static/src/components/item/mm_img.vue +0 -21
- package/bin/static/src/components/item/mm_media.vue +0 -18
- package/bin/static/src/components/item/mm_message.vue +0 -18
- package/bin/static/src/components/item/mm_music.vue +0 -95
- package/bin/static/src/components/item/mm_news.vue +0 -22
- package/bin/static/src/components/item/mm_number.vue +0 -26
- package/bin/static/src/components/item/mm_question.vue +0 -35
- package/bin/static/src/components/item/mm_user.vue +0 -22
- package/bin/static/src/components/item/mm_video.vue +0 -95
- package/bin/static/src/components/slide/mm_slide_card.vue +0 -64
- package/bin/static/src/components/slide/mm_slide_img.vue +0 -47
- package/bin/static/src/components/slide/mm_slide_page.vue +0 -8
- package/bin/static/src/components/slide/mm_slide_text.vue +0 -54
- package/bin/static/src/main.js +0 -84
- package/bin/static/src/mixins/form.js +0 -223
- package/bin/static/src/mixins/item.js +0 -242
- package/bin/static/src/mixins/list.js +0 -244
- package/bin/static/src/mixins/page.js +0 -1011
- package/bin/static/src/mm_component.js +0 -74
- package/bin/static/src/router.js +0 -72
- package/bin/static/src/store/user.js +0 -75
- package/bin/static/src/store/web.js +0 -50
- package/bin/static/user/1/number_info.xlsx +0 -0
- package/bin/static/w3c.html +0 -94
- package/init.js +0 -55
- package/update.md +0 -1
- /package/{bin → core}/com/api/README.md +0 -0
- /package/{bin → core}/com/api/rpc.js +0 -0
- /package/{bin → core}/com/db/README.md +0 -0
- /package/{bin → core}/com/event/README.md +0 -0
- /package/{bin/com/socket → core/com/mqtt}/README.md +0 -0
- /package/{bin → core}/com/nav/README.md +0 -0
- /package/{bin → core}/com/nav/config.tpl.json +0 -0
- /package/{bin → core}/com/param/README.md +0 -0
- /package/{bin → core}/com/param/index.js +0 -0
- /package/{bin → core}/com/param/script.js +0 -0
- /package/{bin → core}/com/param/test.js +0 -0
- /package/{bin → core}/com/plugin/README.md +0 -0
- /package/{bin → core}/com/plugin/script.js +0 -0
- /package/{bin → core}/com/sql/README.md +0 -0
- /package/{bin → core}/com/sql/index.js +0 -0
- /package/{bin → core}/com/sql/script.js +0 -0
- /package/{bin → core}/com/static/README.md +0 -0
- /package/{bin → core}/com/static/script.js +0 -0
- /package/{bin → core}/com/task/README.md +0 -0
- /package/{bin/rps.bat → rps.bat} +0 -0
- /package/{bin/tps.bat → tps.bat} +0 -0
|
@@ -1,112 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
|
|
3
|
-
ISBL Editor style light color schemec (c) Dmitriy Tarasov <dimatar@gmail.com>
|
|
4
|
-
|
|
5
|
-
*/
|
|
6
|
-
|
|
7
|
-
.hljs {
|
|
8
|
-
display: block;
|
|
9
|
-
overflow-x: auto;
|
|
10
|
-
padding: 0.5em;
|
|
11
|
-
background: white;
|
|
12
|
-
color: black;
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
/* Base color: saturation 0; */
|
|
16
|
-
|
|
17
|
-
.hljs,
|
|
18
|
-
.hljs-subst {
|
|
19
|
-
color: #000000;
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
.hljs-comment {
|
|
23
|
-
color: #555555;
|
|
24
|
-
font-style: italic;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
.hljs-keyword,
|
|
28
|
-
.hljs-attribute,
|
|
29
|
-
.hljs-selector-tag,
|
|
30
|
-
.hljs-meta-keyword,
|
|
31
|
-
.hljs-doctag,
|
|
32
|
-
.hljs-name {
|
|
33
|
-
color: #000000;
|
|
34
|
-
font-weight: bold;
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
/* User color: hue: 0 */
|
|
39
|
-
|
|
40
|
-
.hljs-string {
|
|
41
|
-
color: #000080;
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
.hljs-type,
|
|
45
|
-
.hljs-number,
|
|
46
|
-
.hljs-selector-id,
|
|
47
|
-
.hljs-selector-class,
|
|
48
|
-
.hljs-quote,
|
|
49
|
-
.hljs-template-tag,
|
|
50
|
-
.hljs-deletion {
|
|
51
|
-
color: #000000;
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
.hljs-title,
|
|
55
|
-
.hljs-section {
|
|
56
|
-
color: #fb2c00;
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
.hljs-title>.hljs-built_in {
|
|
60
|
-
color: #008080;
|
|
61
|
-
font-weight: normal;
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
.hljs-regexp,
|
|
65
|
-
.hljs-symbol,
|
|
66
|
-
.hljs-variable,
|
|
67
|
-
.hljs-template-variable,
|
|
68
|
-
.hljs-link,
|
|
69
|
-
.hljs-selector-attr,
|
|
70
|
-
.hljs-selector-pseudo {
|
|
71
|
-
color: #5e1700;
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
/* Language color: hue: 90; */
|
|
75
|
-
|
|
76
|
-
.hljs-built_in,
|
|
77
|
-
.hljs-literal {
|
|
78
|
-
color: #000080;
|
|
79
|
-
font-weight: bold;
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
.hljs-bullet,
|
|
83
|
-
.hljs-code,
|
|
84
|
-
.hljs-addition {
|
|
85
|
-
color: #397300;
|
|
86
|
-
}
|
|
87
|
-
|
|
88
|
-
.hljs-class {
|
|
89
|
-
color: #6f1C00;
|
|
90
|
-
font-weight: bold;
|
|
91
|
-
}
|
|
92
|
-
|
|
93
|
-
/* Meta color: hue: 200 */
|
|
94
|
-
|
|
95
|
-
.hljs-meta {
|
|
96
|
-
color: #1f7199;
|
|
97
|
-
}
|
|
98
|
-
|
|
99
|
-
.hljs-meta-string {
|
|
100
|
-
color: #4d99bf;
|
|
101
|
-
}
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
/* Misc effects */
|
|
105
|
-
|
|
106
|
-
.hljs-emphasis {
|
|
107
|
-
font-style: italic;
|
|
108
|
-
}
|
|
109
|
-
|
|
110
|
-
.hljs-strong {
|
|
111
|
-
font-weight: bold;
|
|
112
|
-
}
|
|
@@ -1,74 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
Name: Kimbie (dark)
|
|
3
|
-
Author: Jan T. Sott
|
|
4
|
-
License: Creative Commons Attribution-ShareAlike 4.0 Unported License
|
|
5
|
-
URL: https://github.com/idleberg/Kimbie-highlight.js
|
|
6
|
-
*/
|
|
7
|
-
|
|
8
|
-
/* Kimbie Comment */
|
|
9
|
-
.hljs-comment,
|
|
10
|
-
.hljs-quote {
|
|
11
|
-
color: #d6baad;
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
/* Kimbie Red */
|
|
15
|
-
.hljs-variable,
|
|
16
|
-
.hljs-template-variable,
|
|
17
|
-
.hljs-tag,
|
|
18
|
-
.hljs-name,
|
|
19
|
-
.hljs-selector-id,
|
|
20
|
-
.hljs-selector-class,
|
|
21
|
-
.hljs-regexp,
|
|
22
|
-
.hljs-meta {
|
|
23
|
-
color: #dc3958;
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
/* Kimbie Orange */
|
|
27
|
-
.hljs-number,
|
|
28
|
-
.hljs-built_in,
|
|
29
|
-
.hljs-builtin-name,
|
|
30
|
-
.hljs-literal,
|
|
31
|
-
.hljs-type,
|
|
32
|
-
.hljs-params,
|
|
33
|
-
.hljs-deletion,
|
|
34
|
-
.hljs-link {
|
|
35
|
-
color: #f79a32;
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
/* Kimbie Yellow */
|
|
39
|
-
.hljs-title,
|
|
40
|
-
.hljs-section,
|
|
41
|
-
.hljs-attribute {
|
|
42
|
-
color: #f06431;
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
/* Kimbie Green */
|
|
46
|
-
.hljs-string,
|
|
47
|
-
.hljs-symbol,
|
|
48
|
-
.hljs-bullet,
|
|
49
|
-
.hljs-addition {
|
|
50
|
-
color: #889b4a;
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
/* Kimbie Purple */
|
|
54
|
-
.hljs-keyword,
|
|
55
|
-
.hljs-selector-tag,
|
|
56
|
-
.hljs-function {
|
|
57
|
-
color: #98676a;
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
.hljs {
|
|
61
|
-
display: block;
|
|
62
|
-
overflow-x: auto;
|
|
63
|
-
background: #221a0f;
|
|
64
|
-
color: #d3af86;
|
|
65
|
-
padding: 0.5em;
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
.hljs-emphasis {
|
|
69
|
-
font-style: italic;
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
.hljs-strong {
|
|
73
|
-
font-weight: bold;
|
|
74
|
-
}
|
|
@@ -1,74 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
Name: Kimbie (light)
|
|
3
|
-
Author: Jan T. Sott
|
|
4
|
-
License: Creative Commons Attribution-ShareAlike 4.0 Unported License
|
|
5
|
-
URL: https://github.com/idleberg/Kimbie-highlight.js
|
|
6
|
-
*/
|
|
7
|
-
|
|
8
|
-
/* Kimbie Comment */
|
|
9
|
-
.hljs-comment,
|
|
10
|
-
.hljs-quote {
|
|
11
|
-
color: #a57a4c;
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
/* Kimbie Red */
|
|
15
|
-
.hljs-variable,
|
|
16
|
-
.hljs-template-variable,
|
|
17
|
-
.hljs-tag,
|
|
18
|
-
.hljs-name,
|
|
19
|
-
.hljs-selector-id,
|
|
20
|
-
.hljs-selector-class,
|
|
21
|
-
.hljs-regexp,
|
|
22
|
-
.hljs-meta {
|
|
23
|
-
color: #dc3958;
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
/* Kimbie Orange */
|
|
27
|
-
.hljs-number,
|
|
28
|
-
.hljs-built_in,
|
|
29
|
-
.hljs-builtin-name,
|
|
30
|
-
.hljs-literal,
|
|
31
|
-
.hljs-type,
|
|
32
|
-
.hljs-params,
|
|
33
|
-
.hljs-deletion,
|
|
34
|
-
.hljs-link {
|
|
35
|
-
color: #f79a32;
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
/* Kimbie Yellow */
|
|
39
|
-
.hljs-title,
|
|
40
|
-
.hljs-section,
|
|
41
|
-
.hljs-attribute {
|
|
42
|
-
color: #f06431;
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
/* Kimbie Green */
|
|
46
|
-
.hljs-string,
|
|
47
|
-
.hljs-symbol,
|
|
48
|
-
.hljs-bullet,
|
|
49
|
-
.hljs-addition {
|
|
50
|
-
color: #889b4a;
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
/* Kimbie Purple */
|
|
54
|
-
.hljs-keyword,
|
|
55
|
-
.hljs-selector-tag,
|
|
56
|
-
.hljs-function {
|
|
57
|
-
color: #98676a;
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
.hljs {
|
|
61
|
-
display: block;
|
|
62
|
-
overflow-x: auto;
|
|
63
|
-
background: #fbebd4;
|
|
64
|
-
color: #84613d;
|
|
65
|
-
padding: 0.5em;
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
.hljs-emphasis {
|
|
69
|
-
font-style: italic;
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
.hljs-strong {
|
|
73
|
-
font-weight: bold;
|
|
74
|
-
}
|
|
@@ -1,87 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
|
|
3
|
-
Lightfair style (c) Tristian Kelly <tristian.kelly560@gmail.com>
|
|
4
|
-
|
|
5
|
-
*/
|
|
6
|
-
|
|
7
|
-
.hljs {
|
|
8
|
-
display: block;
|
|
9
|
-
overflow-x: auto;
|
|
10
|
-
padding: 0.5em;
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
.hljs-name {
|
|
14
|
-
color:#01a3a3;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
.hljs-tag,.hljs-meta {
|
|
18
|
-
color:#778899;
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
.hljs,
|
|
22
|
-
.hljs-subst {
|
|
23
|
-
color: #444
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
.hljs-comment {
|
|
27
|
-
color: #888888
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
.hljs-keyword,
|
|
31
|
-
.hljs-attribute,
|
|
32
|
-
.hljs-selector-tag,
|
|
33
|
-
.hljs-meta-keyword,
|
|
34
|
-
.hljs-doctag,
|
|
35
|
-
.hljs-name {
|
|
36
|
-
font-weight: bold
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
.hljs-type,
|
|
40
|
-
.hljs-string,
|
|
41
|
-
.hljs-number,
|
|
42
|
-
.hljs-selector-id,
|
|
43
|
-
.hljs-selector-class,
|
|
44
|
-
.hljs-quote,
|
|
45
|
-
.hljs-template-tag,
|
|
46
|
-
.hljs-deletion {
|
|
47
|
-
color: #4286f4
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
.hljs-title,
|
|
51
|
-
.hljs-section {
|
|
52
|
-
color: #4286f4;
|
|
53
|
-
font-weight: bold
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
.hljs-regexp,
|
|
57
|
-
.hljs-symbol,
|
|
58
|
-
.hljs-variable,
|
|
59
|
-
.hljs-template-variable,
|
|
60
|
-
.hljs-link,
|
|
61
|
-
.hljs-selector-attr,
|
|
62
|
-
.hljs-selector-pseudo {
|
|
63
|
-
color: #BC6060
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
.hljs-literal {
|
|
67
|
-
color: #62bcbc
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
.hljs-built_in,
|
|
71
|
-
.hljs-bullet,
|
|
72
|
-
.hljs-code,
|
|
73
|
-
.hljs-addition {
|
|
74
|
-
color: #25c6c6
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
.hljs-meta-string {
|
|
78
|
-
color: #4d99bf
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
.hljs-emphasis {
|
|
82
|
-
font-style: italic
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
.hljs-strong {
|
|
86
|
-
font-weight: bold
|
|
87
|
-
}
|
|
@@ -1,70 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
Description: Magula style for highligh.js
|
|
3
|
-
Author: Ruslan Keba <rukeba@gmail.com>
|
|
4
|
-
Website: http://rukeba.com/
|
|
5
|
-
Version: 1.0
|
|
6
|
-
Date: 2009-01-03
|
|
7
|
-
Music: Aphex Twin / Xtal
|
|
8
|
-
*/
|
|
9
|
-
|
|
10
|
-
.hljs {
|
|
11
|
-
display: block;
|
|
12
|
-
overflow-x: auto;
|
|
13
|
-
padding: 0.5em;
|
|
14
|
-
background-color: #f4f4f4;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
.hljs,
|
|
18
|
-
.hljs-subst {
|
|
19
|
-
color: black;
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
.hljs-string,
|
|
23
|
-
.hljs-title,
|
|
24
|
-
.hljs-symbol,
|
|
25
|
-
.hljs-bullet,
|
|
26
|
-
.hljs-attribute,
|
|
27
|
-
.hljs-addition,
|
|
28
|
-
.hljs-variable,
|
|
29
|
-
.hljs-template-tag,
|
|
30
|
-
.hljs-template-variable {
|
|
31
|
-
color: #050;
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
.hljs-comment,
|
|
35
|
-
.hljs-quote {
|
|
36
|
-
color: #777;
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
.hljs-number,
|
|
40
|
-
.hljs-regexp,
|
|
41
|
-
.hljs-literal,
|
|
42
|
-
.hljs-type,
|
|
43
|
-
.hljs-link {
|
|
44
|
-
color: #800;
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
.hljs-deletion,
|
|
48
|
-
.hljs-meta {
|
|
49
|
-
color: #00e;
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
.hljs-keyword,
|
|
53
|
-
.hljs-selector-tag,
|
|
54
|
-
.hljs-doctag,
|
|
55
|
-
.hljs-title,
|
|
56
|
-
.hljs-section,
|
|
57
|
-
.hljs-built_in,
|
|
58
|
-
.hljs-tag,
|
|
59
|
-
.hljs-name {
|
|
60
|
-
font-weight: bold;
|
|
61
|
-
color: navy;
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
.hljs-emphasis {
|
|
65
|
-
font-style: italic;
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
.hljs-strong {
|
|
69
|
-
font-weight: bold;
|
|
70
|
-
}
|
|
@@ -1,59 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
Five-color theme from a single blue hue.
|
|
3
|
-
*/
|
|
4
|
-
.hljs {
|
|
5
|
-
display: block;
|
|
6
|
-
overflow-x: auto;
|
|
7
|
-
padding: 0.5em;
|
|
8
|
-
background: #eaeef3;
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
.hljs {
|
|
12
|
-
color: #00193a;
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
.hljs-keyword,
|
|
16
|
-
.hljs-selector-tag,
|
|
17
|
-
.hljs-title,
|
|
18
|
-
.hljs-section,
|
|
19
|
-
.hljs-doctag,
|
|
20
|
-
.hljs-name,
|
|
21
|
-
.hljs-strong {
|
|
22
|
-
font-weight: bold;
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
.hljs-comment {
|
|
26
|
-
color: #738191;
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
.hljs-string,
|
|
30
|
-
.hljs-title,
|
|
31
|
-
.hljs-section,
|
|
32
|
-
.hljs-built_in,
|
|
33
|
-
.hljs-literal,
|
|
34
|
-
.hljs-type,
|
|
35
|
-
.hljs-addition,
|
|
36
|
-
.hljs-tag,
|
|
37
|
-
.hljs-quote,
|
|
38
|
-
.hljs-name,
|
|
39
|
-
.hljs-selector-id,
|
|
40
|
-
.hljs-selector-class {
|
|
41
|
-
color: #0048ab;
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
.hljs-meta,
|
|
45
|
-
.hljs-subst,
|
|
46
|
-
.hljs-symbol,
|
|
47
|
-
.hljs-regexp,
|
|
48
|
-
.hljs-attribute,
|
|
49
|
-
.hljs-deletion,
|
|
50
|
-
.hljs-variable,
|
|
51
|
-
.hljs-template-variable,
|
|
52
|
-
.hljs-link,
|
|
53
|
-
.hljs-bullet {
|
|
54
|
-
color: #4c81c9;
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
.hljs-emphasis {
|
|
58
|
-
font-style: italic;
|
|
59
|
-
}
|
|
@@ -1,83 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
|
|
3
|
-
Monokai Sublime style. Derived from Monokai by noformnocontent http://nn.mit-license.org/
|
|
4
|
-
|
|
5
|
-
*/
|
|
6
|
-
|
|
7
|
-
.hljs {
|
|
8
|
-
display: block;
|
|
9
|
-
overflow-x: auto;
|
|
10
|
-
padding: 0.5em;
|
|
11
|
-
background: #23241f;
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
.hljs,
|
|
15
|
-
.hljs-tag,
|
|
16
|
-
.hljs-subst {
|
|
17
|
-
color: #f8f8f2;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
.hljs-strong,
|
|
21
|
-
.hljs-emphasis {
|
|
22
|
-
color: #a8a8a2;
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
.hljs-bullet,
|
|
26
|
-
.hljs-quote,
|
|
27
|
-
.hljs-number,
|
|
28
|
-
.hljs-regexp,
|
|
29
|
-
.hljs-literal,
|
|
30
|
-
.hljs-link {
|
|
31
|
-
color: #ae81ff;
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
.hljs-code,
|
|
35
|
-
.hljs-title,
|
|
36
|
-
.hljs-section,
|
|
37
|
-
.hljs-selector-class {
|
|
38
|
-
color: #a6e22e;
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
.hljs-strong {
|
|
42
|
-
font-weight: bold;
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
.hljs-emphasis {
|
|
46
|
-
font-style: italic;
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
.hljs-keyword,
|
|
50
|
-
.hljs-selector-tag,
|
|
51
|
-
.hljs-name,
|
|
52
|
-
.hljs-attr {
|
|
53
|
-
color: #f92672;
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
.hljs-symbol,
|
|
57
|
-
.hljs-attribute {
|
|
58
|
-
color: #66d9ef;
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
.hljs-params,
|
|
62
|
-
.hljs-class .hljs-title {
|
|
63
|
-
color: #f8f8f2;
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
.hljs-string,
|
|
67
|
-
.hljs-type,
|
|
68
|
-
.hljs-built_in,
|
|
69
|
-
.hljs-builtin-name,
|
|
70
|
-
.hljs-selector-id,
|
|
71
|
-
.hljs-selector-attr,
|
|
72
|
-
.hljs-selector-pseudo,
|
|
73
|
-
.hljs-addition,
|
|
74
|
-
.hljs-variable,
|
|
75
|
-
.hljs-template-variable {
|
|
76
|
-
color: #e6db74;
|
|
77
|
-
}
|
|
78
|
-
|
|
79
|
-
.hljs-comment,
|
|
80
|
-
.hljs-deletion,
|
|
81
|
-
.hljs-meta {
|
|
82
|
-
color: #75715e;
|
|
83
|
-
}
|
|
@@ -1,70 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
Monokai style - ported by Luigi Maselli - http://grigio.org
|
|
3
|
-
*/
|
|
4
|
-
|
|
5
|
-
.hljs {
|
|
6
|
-
display: block;
|
|
7
|
-
overflow-x: auto;
|
|
8
|
-
padding: 0.5em;
|
|
9
|
-
background: #272822; color: #ddd;
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
.hljs-tag,
|
|
13
|
-
.hljs-keyword,
|
|
14
|
-
.hljs-selector-tag,
|
|
15
|
-
.hljs-literal,
|
|
16
|
-
.hljs-strong,
|
|
17
|
-
.hljs-name {
|
|
18
|
-
color: #f92672;
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
.hljs-code {
|
|
22
|
-
color: #66d9ef;
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
.hljs-class .hljs-title {
|
|
26
|
-
color: white;
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
.hljs-attribute,
|
|
30
|
-
.hljs-symbol,
|
|
31
|
-
.hljs-regexp,
|
|
32
|
-
.hljs-link {
|
|
33
|
-
color: #bf79db;
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
.hljs-string,
|
|
37
|
-
.hljs-bullet,
|
|
38
|
-
.hljs-subst,
|
|
39
|
-
.hljs-title,
|
|
40
|
-
.hljs-section,
|
|
41
|
-
.hljs-emphasis,
|
|
42
|
-
.hljs-type,
|
|
43
|
-
.hljs-built_in,
|
|
44
|
-
.hljs-builtin-name,
|
|
45
|
-
.hljs-selector-attr,
|
|
46
|
-
.hljs-selector-pseudo,
|
|
47
|
-
.hljs-addition,
|
|
48
|
-
.hljs-variable,
|
|
49
|
-
.hljs-template-tag,
|
|
50
|
-
.hljs-template-variable {
|
|
51
|
-
color: #a6e22e;
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
.hljs-comment,
|
|
55
|
-
.hljs-quote,
|
|
56
|
-
.hljs-deletion,
|
|
57
|
-
.hljs-meta {
|
|
58
|
-
color: #75715e;
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
.hljs-keyword,
|
|
62
|
-
.hljs-selector-tag,
|
|
63
|
-
.hljs-literal,
|
|
64
|
-
.hljs-doctag,
|
|
65
|
-
.hljs-title,
|
|
66
|
-
.hljs-section,
|
|
67
|
-
.hljs-type,
|
|
68
|
-
.hljs-selector-id {
|
|
69
|
-
font-weight: bold;
|
|
70
|
-
}
|