mm_os 1.3.4 → 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,76 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
|
|
3
|
-
Dracula Theme v1.2.0
|
|
4
|
-
|
|
5
|
-
https://github.com/zenorocha/dracula-theme
|
|
6
|
-
|
|
7
|
-
Copyright 2015, All rights reserved
|
|
8
|
-
|
|
9
|
-
Code licensed under the MIT license
|
|
10
|
-
http://zenorocha.mit-license.org
|
|
11
|
-
|
|
12
|
-
@author Éverton Ribeiro <nuxlli@gmail.com>
|
|
13
|
-
@author Zeno Rocha <hi@zenorocha.com>
|
|
14
|
-
|
|
15
|
-
*/
|
|
16
|
-
|
|
17
|
-
.hljs {
|
|
18
|
-
display: block;
|
|
19
|
-
overflow-x: auto;
|
|
20
|
-
padding: 0.5em;
|
|
21
|
-
background: #282a36;
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
.hljs-keyword,
|
|
25
|
-
.hljs-selector-tag,
|
|
26
|
-
.hljs-literal,
|
|
27
|
-
.hljs-section,
|
|
28
|
-
.hljs-link {
|
|
29
|
-
color: #8be9fd;
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
.hljs-function .hljs-keyword {
|
|
33
|
-
color: #ff79c6;
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
.hljs,
|
|
37
|
-
.hljs-subst {
|
|
38
|
-
color: #f8f8f2;
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
.hljs-string,
|
|
42
|
-
.hljs-title,
|
|
43
|
-
.hljs-name,
|
|
44
|
-
.hljs-type,
|
|
45
|
-
.hljs-attribute,
|
|
46
|
-
.hljs-symbol,
|
|
47
|
-
.hljs-bullet,
|
|
48
|
-
.hljs-addition,
|
|
49
|
-
.hljs-variable,
|
|
50
|
-
.hljs-template-tag,
|
|
51
|
-
.hljs-template-variable {
|
|
52
|
-
color: #f1fa8c;
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
.hljs-comment,
|
|
56
|
-
.hljs-quote,
|
|
57
|
-
.hljs-deletion,
|
|
58
|
-
.hljs-meta {
|
|
59
|
-
color: #6272a4;
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
.hljs-keyword,
|
|
63
|
-
.hljs-selector-tag,
|
|
64
|
-
.hljs-literal,
|
|
65
|
-
.hljs-title,
|
|
66
|
-
.hljs-section,
|
|
67
|
-
.hljs-doctag,
|
|
68
|
-
.hljs-type,
|
|
69
|
-
.hljs-name,
|
|
70
|
-
.hljs-strong {
|
|
71
|
-
font-weight: bold;
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
.hljs-emphasis {
|
|
75
|
-
font-style: italic;
|
|
76
|
-
}
|
|
@@ -1,71 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
|
|
3
|
-
FAR Style (c) MajestiC <majestic2k@gmail.com>
|
|
4
|
-
|
|
5
|
-
*/
|
|
6
|
-
|
|
7
|
-
.hljs {
|
|
8
|
-
display: block;
|
|
9
|
-
overflow-x: auto;
|
|
10
|
-
padding: 0.5em;
|
|
11
|
-
background: #000080;
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
.hljs,
|
|
15
|
-
.hljs-subst {
|
|
16
|
-
color: #0ff;
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
.hljs-string,
|
|
20
|
-
.hljs-attribute,
|
|
21
|
-
.hljs-symbol,
|
|
22
|
-
.hljs-bullet,
|
|
23
|
-
.hljs-built_in,
|
|
24
|
-
.hljs-builtin-name,
|
|
25
|
-
.hljs-template-tag,
|
|
26
|
-
.hljs-template-variable,
|
|
27
|
-
.hljs-addition {
|
|
28
|
-
color: #ff0;
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
.hljs-keyword,
|
|
32
|
-
.hljs-selector-tag,
|
|
33
|
-
.hljs-section,
|
|
34
|
-
.hljs-type,
|
|
35
|
-
.hljs-name,
|
|
36
|
-
.hljs-selector-id,
|
|
37
|
-
.hljs-selector-class,
|
|
38
|
-
.hljs-variable {
|
|
39
|
-
color: #fff;
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
.hljs-comment,
|
|
43
|
-
.hljs-quote,
|
|
44
|
-
.hljs-doctag,
|
|
45
|
-
.hljs-deletion {
|
|
46
|
-
color: #888;
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
.hljs-number,
|
|
50
|
-
.hljs-regexp,
|
|
51
|
-
.hljs-literal,
|
|
52
|
-
.hljs-link {
|
|
53
|
-
color: #0f0;
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
.hljs-meta {
|
|
57
|
-
color: #008080;
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
.hljs-keyword,
|
|
61
|
-
.hljs-selector-tag,
|
|
62
|
-
.hljs-title,
|
|
63
|
-
.hljs-section,
|
|
64
|
-
.hljs-name,
|
|
65
|
-
.hljs-strong {
|
|
66
|
-
font-weight: bold;
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
.hljs-emphasis {
|
|
70
|
-
font-style: italic;
|
|
71
|
-
}
|
|
@@ -1,88 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
Description: Foundation 4 docs style for highlight.js
|
|
3
|
-
Author: Dan Allen <dan.j.allen@gmail.com>
|
|
4
|
-
Website: http://foundation.zurb.com/docs/
|
|
5
|
-
Version: 1.0
|
|
6
|
-
Date: 2013-04-02
|
|
7
|
-
*/
|
|
8
|
-
|
|
9
|
-
.hljs {
|
|
10
|
-
display: block;
|
|
11
|
-
overflow-x: auto;
|
|
12
|
-
padding: 0.5em;
|
|
13
|
-
background: #eee; color: black;
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
.hljs-link,
|
|
17
|
-
.hljs-emphasis,
|
|
18
|
-
.hljs-attribute,
|
|
19
|
-
.hljs-addition {
|
|
20
|
-
color: #070;
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
.hljs-emphasis {
|
|
24
|
-
font-style: italic;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
.hljs-strong,
|
|
28
|
-
.hljs-string,
|
|
29
|
-
.hljs-deletion {
|
|
30
|
-
color: #d14;
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
.hljs-strong {
|
|
34
|
-
font-weight: bold;
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
.hljs-quote,
|
|
38
|
-
.hljs-comment {
|
|
39
|
-
color: #998;
|
|
40
|
-
font-style: italic;
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
.hljs-section,
|
|
44
|
-
.hljs-title {
|
|
45
|
-
color: #900;
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
.hljs-class .hljs-title,
|
|
49
|
-
.hljs-type {
|
|
50
|
-
color: #458;
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
.hljs-variable,
|
|
54
|
-
.hljs-template-variable {
|
|
55
|
-
color: #336699;
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
.hljs-bullet {
|
|
59
|
-
color: #997700;
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
.hljs-meta {
|
|
63
|
-
color: #3344bb;
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
.hljs-code,
|
|
67
|
-
.hljs-number,
|
|
68
|
-
.hljs-literal,
|
|
69
|
-
.hljs-keyword,
|
|
70
|
-
.hljs-selector-tag {
|
|
71
|
-
color: #099;
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
.hljs-regexp {
|
|
75
|
-
background-color: #fff0ff;
|
|
76
|
-
color: #880088;
|
|
77
|
-
}
|
|
78
|
-
|
|
79
|
-
.hljs-symbol {
|
|
80
|
-
color: #990073;
|
|
81
|
-
}
|
|
82
|
-
|
|
83
|
-
.hljs-tag,
|
|
84
|
-
.hljs-name,
|
|
85
|
-
.hljs-selector-id,
|
|
86
|
-
.hljs-selector-class {
|
|
87
|
-
color: #007700;
|
|
88
|
-
}
|
|
@@ -1,79 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* GitHub Gist Theme
|
|
3
|
-
* Author : Anthony Attard - https://github.com/AnthonyAttard
|
|
4
|
-
* Author : Louis Barranqueiro - https://github.com/LouisBarranqueiro
|
|
5
|
-
*/
|
|
6
|
-
|
|
7
|
-
.hljs {
|
|
8
|
-
display: block;
|
|
9
|
-
background: white;
|
|
10
|
-
padding: 0.5em;
|
|
11
|
-
color: #333333;
|
|
12
|
-
overflow-x: auto;
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
.hljs-comment,
|
|
16
|
-
.hljs-meta {
|
|
17
|
-
color: #969896;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
.hljs-variable,
|
|
21
|
-
.hljs-template-variable,
|
|
22
|
-
.hljs-strong,
|
|
23
|
-
.hljs-emphasis,
|
|
24
|
-
.hljs-quote {
|
|
25
|
-
color: #df5000;
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
.hljs-keyword,
|
|
29
|
-
.hljs-selector-tag,
|
|
30
|
-
.hljs-type {
|
|
31
|
-
color: #d73a49;
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
.hljs-literal,
|
|
35
|
-
.hljs-symbol,
|
|
36
|
-
.hljs-bullet,
|
|
37
|
-
.hljs-attribute {
|
|
38
|
-
color: #0086b3;
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
.hljs-section,
|
|
42
|
-
.hljs-name {
|
|
43
|
-
color: #63a35c;
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
.hljs-tag {
|
|
47
|
-
color: #333333;
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
.hljs-title,
|
|
51
|
-
.hljs-attr,
|
|
52
|
-
.hljs-selector-id,
|
|
53
|
-
.hljs-selector-class,
|
|
54
|
-
.hljs-selector-attr,
|
|
55
|
-
.hljs-selector-pseudo {
|
|
56
|
-
color: #6f42c1;
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
.hljs-addition {
|
|
60
|
-
color: #55a532;
|
|
61
|
-
background-color: #eaffea;
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
.hljs-deletion {
|
|
65
|
-
color: #bd2c00;
|
|
66
|
-
background-color: #ffecec;
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
.hljs-link {
|
|
70
|
-
text-decoration: underline;
|
|
71
|
-
}
|
|
72
|
-
|
|
73
|
-
.hljs-number {
|
|
74
|
-
color: #005cc5;
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
.hljs-string {
|
|
78
|
-
color: #032f62;
|
|
79
|
-
}
|
|
@@ -1,99 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
|
|
3
|
-
github.com style (c) Vasily Polovnyov <vast@whiteants.net>
|
|
4
|
-
|
|
5
|
-
*/
|
|
6
|
-
|
|
7
|
-
.hljs {
|
|
8
|
-
display: block;
|
|
9
|
-
overflow-x: auto;
|
|
10
|
-
padding: 0.5em;
|
|
11
|
-
color: #333;
|
|
12
|
-
background: #f8f8f8;
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
.hljs-comment,
|
|
16
|
-
.hljs-quote {
|
|
17
|
-
color: #998;
|
|
18
|
-
font-style: italic;
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
.hljs-keyword,
|
|
22
|
-
.hljs-selector-tag,
|
|
23
|
-
.hljs-subst {
|
|
24
|
-
color: #333;
|
|
25
|
-
font-weight: bold;
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
.hljs-number,
|
|
29
|
-
.hljs-literal,
|
|
30
|
-
.hljs-variable,
|
|
31
|
-
.hljs-template-variable,
|
|
32
|
-
.hljs-tag .hljs-attr {
|
|
33
|
-
color: #008080;
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
.hljs-string,
|
|
37
|
-
.hljs-doctag {
|
|
38
|
-
color: #d14;
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
.hljs-title,
|
|
42
|
-
.hljs-section,
|
|
43
|
-
.hljs-selector-id {
|
|
44
|
-
color: #900;
|
|
45
|
-
font-weight: bold;
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
.hljs-subst {
|
|
49
|
-
font-weight: normal;
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
.hljs-type,
|
|
53
|
-
.hljs-class .hljs-title {
|
|
54
|
-
color: #458;
|
|
55
|
-
font-weight: bold;
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
.hljs-tag,
|
|
59
|
-
.hljs-name,
|
|
60
|
-
.hljs-attribute {
|
|
61
|
-
color: #000080;
|
|
62
|
-
font-weight: normal;
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
.hljs-regexp,
|
|
66
|
-
.hljs-link {
|
|
67
|
-
color: #009926;
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
.hljs-symbol,
|
|
71
|
-
.hljs-bullet {
|
|
72
|
-
color: #990073;
|
|
73
|
-
}
|
|
74
|
-
|
|
75
|
-
.hljs-built_in,
|
|
76
|
-
.hljs-builtin-name {
|
|
77
|
-
color: #0086b3;
|
|
78
|
-
}
|
|
79
|
-
|
|
80
|
-
.hljs-meta {
|
|
81
|
-
color: #999;
|
|
82
|
-
font-weight: bold;
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
.hljs-deletion {
|
|
86
|
-
background: #fdd;
|
|
87
|
-
}
|
|
88
|
-
|
|
89
|
-
.hljs-addition {
|
|
90
|
-
background: #dfd;
|
|
91
|
-
}
|
|
92
|
-
|
|
93
|
-
.hljs-emphasis {
|
|
94
|
-
font-style: italic;
|
|
95
|
-
}
|
|
96
|
-
|
|
97
|
-
.hljs-strong {
|
|
98
|
-
font-weight: bold;
|
|
99
|
-
}
|
|
@@ -1,78 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
|
|
3
|
-
GML Theme - Meseta <meseta@gmail.com>
|
|
4
|
-
|
|
5
|
-
*/
|
|
6
|
-
|
|
7
|
-
.hljs {
|
|
8
|
-
display: block;
|
|
9
|
-
overflow-x: auto;
|
|
10
|
-
padding: 0.5em;
|
|
11
|
-
background: #222222;
|
|
12
|
-
color: #C0C0C0;
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
.hljs-keywords {
|
|
16
|
-
color: #FFB871;
|
|
17
|
-
font-weight: bold;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
.hljs-built_in {
|
|
21
|
-
color: #FFB871;
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
.hljs-literal {
|
|
25
|
-
color: #FF8080;
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
.hljs-symbol {
|
|
29
|
-
color: #58E55A;
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
.hljs-comment {
|
|
33
|
-
color: #5B995B;
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
.hljs-string {
|
|
37
|
-
color: #FFFF00;
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
.hljs-number {
|
|
41
|
-
color: #FF8080;
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
.hljs-attribute,
|
|
45
|
-
.hljs-selector-tag,
|
|
46
|
-
.hljs-doctag,
|
|
47
|
-
.hljs-name,
|
|
48
|
-
.hljs-bullet,
|
|
49
|
-
.hljs-code,
|
|
50
|
-
.hljs-addition,
|
|
51
|
-
.hljs-regexp,
|
|
52
|
-
.hljs-variable,
|
|
53
|
-
.hljs-template-variable,
|
|
54
|
-
.hljs-link,
|
|
55
|
-
.hljs-selector-attr,
|
|
56
|
-
.hljs-selector-pseudo,
|
|
57
|
-
.hljs-type,
|
|
58
|
-
.hljs-selector-id,
|
|
59
|
-
.hljs-selector-class,
|
|
60
|
-
.hljs-quote,
|
|
61
|
-
.hljs-template-tag,
|
|
62
|
-
.hljs-deletion,
|
|
63
|
-
.hljs-title,
|
|
64
|
-
.hljs-section,
|
|
65
|
-
.hljs-function,
|
|
66
|
-
.hljs-meta-keyword,
|
|
67
|
-
.hljs-meta,
|
|
68
|
-
.hljs-subst {
|
|
69
|
-
color: #C0C0C0;
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
.hljs-emphasis {
|
|
73
|
-
font-style: italic;
|
|
74
|
-
}
|
|
75
|
-
|
|
76
|
-
.hljs-strong {
|
|
77
|
-
font-weight: bold;
|
|
78
|
-
}
|
|
@@ -1,89 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
|
|
3
|
-
Google Code style (c) Aahan Krish <geekpanth3r@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
|
-
.hljs-comment,
|
|
16
|
-
.hljs-quote {
|
|
17
|
-
color: #800;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
.hljs-keyword,
|
|
21
|
-
.hljs-selector-tag,
|
|
22
|
-
.hljs-section,
|
|
23
|
-
.hljs-title,
|
|
24
|
-
.hljs-name {
|
|
25
|
-
color: #008;
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
.hljs-variable,
|
|
29
|
-
.hljs-template-variable {
|
|
30
|
-
color: #660;
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
.hljs-string,
|
|
34
|
-
.hljs-selector-attr,
|
|
35
|
-
.hljs-selector-pseudo,
|
|
36
|
-
.hljs-regexp {
|
|
37
|
-
color: #080;
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
.hljs-literal,
|
|
41
|
-
.hljs-symbol,
|
|
42
|
-
.hljs-bullet,
|
|
43
|
-
.hljs-meta,
|
|
44
|
-
.hljs-number,
|
|
45
|
-
.hljs-link {
|
|
46
|
-
color: #066;
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
.hljs-title,
|
|
50
|
-
.hljs-doctag,
|
|
51
|
-
.hljs-type,
|
|
52
|
-
.hljs-attr,
|
|
53
|
-
.hljs-built_in,
|
|
54
|
-
.hljs-builtin-name,
|
|
55
|
-
.hljs-params {
|
|
56
|
-
color: #606;
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
.hljs-attribute,
|
|
60
|
-
.hljs-subst {
|
|
61
|
-
color: #000;
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
.hljs-formula {
|
|
65
|
-
background-color: #eee;
|
|
66
|
-
font-style: italic;
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
.hljs-selector-id,
|
|
70
|
-
.hljs-selector-class {
|
|
71
|
-
color: #9B703F
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
.hljs-addition {
|
|
75
|
-
background-color: #baeeba;
|
|
76
|
-
}
|
|
77
|
-
|
|
78
|
-
.hljs-deletion {
|
|
79
|
-
background-color: #ffc8bd;
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
.hljs-doctag,
|
|
83
|
-
.hljs-strong {
|
|
84
|
-
font-weight: bold;
|
|
85
|
-
}
|
|
86
|
-
|
|
87
|
-
.hljs-emphasis {
|
|
88
|
-
font-style: italic;
|
|
89
|
-
}
|
|
@@ -1,101 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
|
|
3
|
-
grayscale style (c) MY Sun <simonmysun@gmail.com>
|
|
4
|
-
|
|
5
|
-
*/
|
|
6
|
-
|
|
7
|
-
.hljs {
|
|
8
|
-
display: block;
|
|
9
|
-
overflow-x: auto;
|
|
10
|
-
padding: 0.5em;
|
|
11
|
-
color: #333;
|
|
12
|
-
background: #fff;
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
.hljs-comment,
|
|
16
|
-
.hljs-quote {
|
|
17
|
-
color: #777;
|
|
18
|
-
font-style: italic;
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
.hljs-keyword,
|
|
22
|
-
.hljs-selector-tag,
|
|
23
|
-
.hljs-subst {
|
|
24
|
-
color: #333;
|
|
25
|
-
font-weight: bold;
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
.hljs-number,
|
|
29
|
-
.hljs-literal {
|
|
30
|
-
color: #777;
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
.hljs-string,
|
|
34
|
-
.hljs-doctag,
|
|
35
|
-
.hljs-formula {
|
|
36
|
-
color: #333;
|
|
37
|
-
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAAJ0lEQVQIW2O8e/fufwYGBgZBQUEQxcCIIfDu3Tuwivfv30NUoAsAALHpFMMLqZlPAAAAAElFTkSuQmCC) repeat;
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
.hljs-title,
|
|
41
|
-
.hljs-section,
|
|
42
|
-
.hljs-selector-id {
|
|
43
|
-
color: #000;
|
|
44
|
-
font-weight: bold;
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
.hljs-subst {
|
|
48
|
-
font-weight: normal;
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
.hljs-class .hljs-title,
|
|
52
|
-
.hljs-type,
|
|
53
|
-
.hljs-name {
|
|
54
|
-
color: #333;
|
|
55
|
-
font-weight: bold;
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
.hljs-tag {
|
|
59
|
-
color: #333;
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
.hljs-regexp {
|
|
63
|
-
color: #333;
|
|
64
|
-
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAICAYAAADA+m62AAAAPUlEQVQYV2NkQAN37979r6yszIgujiIAU4RNMVwhuiQ6H6wQl3XI4oy4FMHcCJPHcDS6J2A2EqUQpJhohQDexSef15DBCwAAAABJRU5ErkJggg==) repeat;
|
|
65
|
-
}
|
|
66
|
-
|
|
67
|
-
.hljs-symbol,
|
|
68
|
-
.hljs-bullet,
|
|
69
|
-
.hljs-link {
|
|
70
|
-
color: #000;
|
|
71
|
-
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAKElEQVQIW2NkQAO7d+/+z4gsBhJwdXVlhAvCBECKwIIwAbhKZBUwBQA6hBpm5efZsgAAAABJRU5ErkJggg==) repeat;
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
.hljs-built_in,
|
|
75
|
-
.hljs-builtin-name {
|
|
76
|
-
color: #000;
|
|
77
|
-
text-decoration: underline;
|
|
78
|
-
}
|
|
79
|
-
|
|
80
|
-
.hljs-meta {
|
|
81
|
-
color: #999;
|
|
82
|
-
font-weight: bold;
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
.hljs-deletion {
|
|
86
|
-
color: #fff;
|
|
87
|
-
background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAADCAYAAABS3WWCAAAAE0lEQVQIW2MMDQ39zzhz5kwIAQAyxweWgUHd1AAAAABJRU5ErkJggg==) repeat;
|
|
88
|
-
}
|
|
89
|
-
|
|
90
|
-
.hljs-addition {
|
|
91
|
-
color: #000;
|
|
92
|
-
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAJCAYAAADgkQYQAAAALUlEQVQYV2N89+7dfwYk8P79ewZBQUFkIQZGOiu6e/cuiptQHAPl0NtNxAQBAM97Oejj3Dg7AAAAAElFTkSuQmCC) repeat;
|
|
93
|
-
}
|
|
94
|
-
|
|
95
|
-
.hljs-emphasis {
|
|
96
|
-
font-style: italic;
|
|
97
|
-
}
|
|
98
|
-
|
|
99
|
-
.hljs-strong {
|
|
100
|
-
font-weight: bold;
|
|
101
|
-
}
|