From cecd7dde55236a49bbc0f36a94b0a167db9aca74 Mon Sep 17 00:00:00 2001
From: yanglbme
Date: Thu, 25 Jun 2020 17:20:37 +0800
Subject: [PATCH 1/3] fix: update code style
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
* 统一代码风格
* 修复超链接问题
* 新增待办列表
---
README.md | 3 +
public/assets/css/app.css | 251 +++++++++--------
public/assets/css/loading.css | 62 ++---
public/assets/css/style-mirror.css | 144 +++++-----
public/favicon.ico | Bin 4286 -> 0 bytes
public/index.html | 63 ++---
public/libs/css/show-hint.css | 50 ++--
public/libs/css/style-mirror.css | 144 +++++-----
src/components/Loading.vue | 13 +-
src/element/index.js | 34 +--
src/scripts/closebrackets.js | 400 ++++++++++++++-------------
src/scripts/config.js | 11 +-
src/scripts/converter.js | 45 ++-
src/scripts/format.js | 154 ++++++-----
src/scripts/renderers/wx-renderer.js | 298 ++++++++++----------
src/scripts/sync-scroll.js | 30 +-
src/scripts/util.js | 277 ++++++++++---------
17 files changed, 1010 insertions(+), 969 deletions(-)
delete mode 100644 public/favicon.ico
diff --git a/README.md b/README.md
index 776c5c6..d1e1a46 100644
--- a/README.md
+++ b/README.md
@@ -43,6 +43,9 @@ Markdown 文档自动即时渲染为微信图文,让你不再为微信文章
- [x] 支持自定义 CSS 样式并实时渲染
- [x] 支持一键恢复至默认内容及样式
- [x] 支持打开或关闭引用链接的选项
+- [ ] 新建右键点击菜单栏
+- [ ] 插入表格功能优化
+
![select-and-change-color-theme](https://imgkr.cn-bj.ufileos.com/32c05c23-6309-491f-bd0d-f22a62c944b4.gif)
diff --git a/public/assets/css/app.css b/public/assets/css/app.css
index 2cfeade..e51d6cc 100644
--- a/public/assets/css/app.css
+++ b/public/assets/css/app.css
@@ -1,234 +1,245 @@
* {
- box-sizing: border-box;
- margin: 0;
- padding: 0;
+ box-sizing: border-box;
+ margin: 0;
+ padding: 0;
}
-input, button, textarea {
- font-family: inherit;
+input,
+button,
+textarea {
+ font-family: inherit;
}
-h1, h2, h3, h4, h5, h6 {
- font-weight: normal;
+h1,
+h2,
+h3,
+h4,
+h5,
+h6 {
+ font-weight: normal;
}
em {
- font-style: normal !important;
+ font-style: normal !important;
}
-html, body {
- height: 100%;
- font-family: 'PingFang SC', BlinkMacSystemFont, Roboto, 'Helvetica Neue', sans-serif;
+html,
+body {
+ height: 100%;
+ font-family: 'PingFang SC', BlinkMacSystemFont, Roboto, 'Helvetica Neue', sans-serif;
}
.el-message__icon {
- display: none
+ display: none
}
.container {
- height: 100%;
- display: flex;
- flex-direction: column;
+ height: 100%;
+ display: flex;
+ flex-direction: column;
}
.top {
- height: 60px;
- padding: 10px 20px;
- display: flex;
- align-items: center;
- margin-right: 20px;
+ height: 60px;
+ padding: 10px 20px;
+ display: flex;
+ align-items: center;
+ margin-right: 20px;
}
.web-title {
- margin: 0 15px 0 5px;
+ margin: 0 15px 0 5px;
}
.web-icon {
- width: auto;
- height: 1.5rem;
- vertical-align: middle;
+ width: auto;
+ height: 1.5rem;
+ vertical-align: middle;
}
#editor {
- height: 100%;
- display: block;
- border: none;
- width: 100%;
- padding: 10px;
+ height: 100%;
+ display: block;
+ border: none;
+ width: 100%;
+ padding: 10px;
}
section {
- height: 100%;
+ height: 100%;
}
.main-body {
- display: flex;
- flex-direction: column;
- padding-top: 0;
- padding-bottom: 10px;
+ display: flex;
+ flex-direction: column;
+ padding-top: 0;
+ padding-bottom: 10px;
}
.ctrl {
- flex-basis: 60px;
- flex-grow: 1;
- flex-shrink: 1;
- display: flex;
- align-items: center;
+ flex-basis: 60px;
+ flex-grow: 1;
+ flex-shrink: 1;
+ display: flex;
+ align-items: center;
}
.preview-wrapper {
- box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
- padding: 0;
- align-items: center;
- justify-content: center;
- display: flex;
- overflow: scroll;
- word-break: break-all;
+ box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
+ padding: 0;
+ align-items: center;
+ justify-content: center;
+ display: flex;
+ overflow: scroll;
+ word-break: break-all;
}
.main-section {
- display: flex;
- height: 100%;
+ display: flex;
+ height: 100%;
}
.hint {
- opacity: 0.6;
- margin: 20px 0;
+ opacity: 0.6;
+ margin: 20px 0;
}
.preview {
- margin: 0 -20px;
- width: 375px;
- padding: 20px;
- font-size: 14px;
- box-sizing: border-box;
- outline: none;
- box-shadow: 0 0 60px rgba(0, 0, 0, 0.1);
+ margin: 0 -20px;
+ width: 375px;
+ padding: 20px;
+ font-size: 14px;
+ box-sizing: border-box;
+ outline: none;
+ box-shadow: 0 0 60px rgba(0, 0, 0, 0.1);
}
.preview table {
- margin-bottom: 10px;
- border-collapse: collapse;
- display: table;
- width: 100% !important;
+ margin-bottom: 10px;
+ border-collapse: collapse;
+ display: table;
+ width: 100% !important;
}
+
/*
.preview table tr:nth-child(even){
background: rgb(250, 250, 250);
}
*/
.select-item-left {
- float: left;
+ float: left;
}
.select-item-right {
- float: right;
- color: #8492a6;
- font-size: 13px;
+ float: right;
+ color: #8492a6;
+ font-size: 13px;
}
.CodeMirror {
- height: 100% !important;
- box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
- font-size: 14px;
- padding: 20px;
- width: 100% !important;
- font-family: 'PingFang SC', BlinkMacSystemFont, Roboto, 'Helvetica Neue', sans-serif !important;
+ height: 100% !important;
+ box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
+ font-size: 14px;
+ padding: 20px;
+ width: 100% !important;
+ font-family: 'PingFang SC', BlinkMacSystemFont, Roboto, 'Helvetica Neue', sans-serif !important;
}
/* ele ui */
.el-form-item {
- margin-bottom: 0 !important;
+ margin-bottom: 0 !important;
}
.el-tooltip {
- cursor: pointer;
+ cursor: pointer;
}
/*wechat code block*/
-.rich_media_content .code-snippet *, .rich_media_content .code-snippet__fix * {
- max-width: 1000% !important;
+.rich_media_content .code-snippet *,
+.rich_media_content .code-snippet__fix * {
+ max-width: 1000% !important;
}
.code-snippet__fix {
- word-wrap: break-word !important;
- font-size: 14px;
- margin: 10px 8px;
- color: #333;
- position: relative;
- background-color: rgb(238,238,238);
- border: 1px solid #f0f0f0;
- border-radius: 2px;
- display: flex;
- line-height: 24px;
+ word-wrap: break-word !important;
+ font-size: 14px;
+ margin: 10px 8px;
+ color: #333;
+ position: relative;
+ background-color: rgb(238, 238, 238);
+ border: 1px solid #f0f0f0;
+ border-radius: 2px;
+ display: flex;
+ line-height: 24px;
}
.code-snippet__fix .code-snippet__line-index {
- counter-reset: line;
- flex-shrink: 0;
- height: 100%;
- padding: 1em;
- list-style-type: none;
+ counter-reset: line;
+ flex-shrink: 0;
+ height: 100%;
+ padding: 1em;
+ list-style-type: none;
}
.code-snippet__fix .code-snippet__line-index li {
- list-style-type: none;
- text-align: right;
+ list-style-type: none;
+ text-align: right;
}
.code-snippet__fix .code-snippet__line-index li::before {
- min-width: 1.5em;
- text-align: right;
- left: -2.5em;
- counter-increment: line;
- content: counter(line);
- display: inline;
- color: rgba(0, 0, 0, 0.15);
+ min-width: 1.5em;
+ text-align: right;
+ left: -2.5em;
+ counter-increment: line;
+ content: counter(line);
+ display: inline;
+ color: rgba(0, 0, 0, 0.15);
}
.code-snippet__fix pre {
- overflow-x: auto;
- padding: 1em 1em 1em 1em;
- white-space: normal;
- flex: 1;
- -webkit-overflow-scrolling: touch;
+ overflow-x: auto;
+ padding: 1em 1em 1em 1em;
+ white-space: normal;
+ flex: 1;
+ -webkit-overflow-scrolling: touch;
}
.code-snippet__fix code {
- text-align: left;
- font-size: 14px;
- white-space: pre;
- display: flex;
- position: relative;
- font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace;
+ text-align: left;
+ font-size: 14px;
+ white-space: pre;
+ display: flex;
+ position: relative;
+ font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace;
}
::-webkit-scrollbar {
- width: 6px;
- height: 6px;
- background-color: #FFF;
+ width: 6px;
+ height: 6px;
+ background-color: #FFF;
}
::-webkit-scrollbar-track {
- border-radius: 6px;
- background-color: rgba(200, 200, 200, 0.3);
+ border-radius: 6px;
+ background-color: rgba(200, 200, 200, 0.3);
}
::-webkit-scrollbar-thumb {
- border-radius: 6px;
- background-color: rgba(144, 146, 152, 0.5);
- transition: background-color .3s;
+ border-radius: 6px;
+ background-color: rgba(144, 146, 152, 0.5);
+ transition: background-color .3s;
}
::-webkit-scrollbar-thumb:hover {
- background-color: rgba(144, 146, 152, 0.5);
+ background-color: rgba(144, 146, 152, 0.5);
}
.CodeMirror-vscrollbar:focus {
outline: none;
}
-.CodeMirror-scroll, .preview-wrapper {
+.CodeMirror-scroll,
+.preview-wrapper {
overflow: unset;
overflow-y: scroll;
}
\ No newline at end of file
diff --git a/public/assets/css/loading.css b/public/assets/css/loading.css
index aea6b19..d0ede5b 100644
--- a/public/assets/css/loading.css
+++ b/public/assets/css/loading.css
@@ -1,47 +1,47 @@
.loading {
- text-align: center;
- position: fixed;
- width: 100%;
- height: 100%;
- overflow: hidden;
- z-index: 99999;
- background-color: #f2f2f2;
+ text-align: center;
+ position: fixed;
+ width: 100%;
+ height: 100%;
+ overflow: hidden;
+ z-index: 99999;
+ background-color: #f2f2f2;
}
.loading_night {
- background-color: #303133;
+ background-color: #303133;
}
.loading-wrapper {
- position: fixed;
- top: 50%;
- left: 50%;
- -webkit-transform: translateX(-50%) translateY(-50%);
- -moz-transform: translateX(-50%) translateY(-50%);
- -ms-transform: translateX(-50%) translateY(-50%);
- transform: translateX(-50%) translateY(-50%);
+ position: fixed;
+ top: 50%;
+ left: 50%;
+ -webkit-transform: translateX(-50%) translateY(-50%);
+ -moz-transform: translateX(-50%) translateY(-50%);
+ -ms-transform: translateX(-50%) translateY(-50%);
+ transform: translateX(-50%) translateY(-50%);
}
.loading-text {
- line-height: 1.4;
- font-size: 1.2rem;
- font-weight: bold;
- margin-bottom: 1rem;
+ line-height: 1.4;
+ font-size: 1.2rem;
+ font-weight: bold;
+ margin-bottom: 1rem;
}
.loading-anim {
- width: 35px;
- height: 35px;
- border: 5px solid rgba(189, 189, 189, 0.25);
- border-left-color: rgba(66, 185, 131, 0.9);
- border-top-color: rgba(66, 185, 131, 0.9);
- border-radius: 50%;
- display: inline-block;
- animation: rotate 600ms infinite linear;
+ width: 35px;
+ height: 35px;
+ border: 5px solid rgba(189, 189, 189, 0.25);
+ border-left-color: rgba(66, 185, 131, 0.9);
+ border-top-color: rgba(66, 185, 131, 0.9);
+ border-radius: 50%;
+ display: inline-block;
+ animation: rotate 600ms infinite linear;
}
@keyframes rotate {
- to {
- transform: rotate(1turn)
- }
-}
+ to {
+ transform: rotate(1turn)
+ }
+}
\ No newline at end of file
diff --git a/public/assets/css/style-mirror.css b/public/assets/css/style-mirror.css
index bf98442..8c74dff 100644
--- a/public/assets/css/style-mirror.css
+++ b/public/assets/css/style-mirror.css
@@ -14,91 +14,111 @@
font-size: 16px;
padding: 20px;
line-height: 25px;
- }
- .cm-s-style-mirror div.CodeMirror-selected {
+}
+
+.cm-s-style-mirror div.CodeMirror-selected {
background: #e0e0e0;
- }
- .cm-s-style-mirror .CodeMirror-line::selection,
- .cm-s-style-mirror .CodeMirror-line > span::selection,
- .cm-s-style-mirror .CodeMirror-line > span > span::selection {
+}
+
+.cm-s-style-mirror .CodeMirror-line::selection,
+.cm-s-style-mirror .CodeMirror-line>span::selection,
+.cm-s-style-mirror .CodeMirror-line>span>span::selection {
background: #e0e0e0;
- }
- .cm-s-style-mirror .CodeMirror-line::-moz-selection,
- .cm-s-style-mirror .CodeMirror-line > span::-moz-selection,
- .cm-s-style-mirror .CodeMirror-line > span > span::-moz-selection {
+}
+
+.cm-s-style-mirror .CodeMirror-line::-moz-selection,
+.cm-s-style-mirror .CodeMirror-line>span::-moz-selection,
+.cm-s-style-mirror .CodeMirror-line>span>span::-moz-selection {
background: #e0e0e0;
- }
- .cm-s-style-mirror .CodeMirror-gutters {
+}
+
+.cm-s-style-mirror .CodeMirror-gutters {
background: #f5f5f5;
border-right: 0px;
- }
- .cm-s-style-mirror .CodeMirror-guttermarker {
+}
+
+.cm-s-style-mirror .CodeMirror-guttermarker {
color: #ac4142;
- }
- .cm-s-style-mirror .CodeMirror-guttermarker-subtle {
+}
+
+.cm-s-style-mirror .CodeMirror-guttermarker-subtle {
color: #b0b0b0;
- }
- .cm-s-style-mirror .CodeMirror-linenumber {
+}
+
+.cm-s-style-mirror .CodeMirror-linenumber {
color: #b0b0b0;
- }
- .cm-s-style-mirror .CodeMirror-cursor {
+}
+
+.cm-s-style-mirror .CodeMirror-cursor {
border-left: 1px solid #505050;
- }
-
- .cm-s-style-mirror span.cm-comment {
- color:green;
- }
- .cm-s-style-mirror span.cm-atom {
+}
+
+.cm-s-style-mirror span.cm-comment {
+ color: green;
+}
+
+.cm-s-style-mirror span.cm-atom {
color: #aa759f;
- }
- .cm-s-style-mirror span.cm-number {
+}
+
+.cm-s-style-mirror span.cm-number {
color: #aa759f;
- }
-
- .cm-s-style-mirror span.cm-property,
- .cm-s-style-mirror span.cm-attribute {
+}
+
+.cm-s-style-mirror span.cm-property,
+.cm-s-style-mirror span.cm-attribute {
color: #90a959;
- }
- .cm-s-style-mirror span.cm-keyword {
+}
+
+.cm-s-style-mirror span.cm-keyword {
color: #023a52;
- }
- .cm-s-style-mirror span.cm-string {
+}
+
+.cm-s-style-mirror span.cm-string {
color: #e46918;
- }
-
- .cm-s-style-mirror span.cm-variable {
+}
+
+.cm-s-style-mirror span.cm-variable {
color: #90a959;
- }
- .cm-s-style-mirror span.cm-variable-2 {
+}
+
+.cm-s-style-mirror span.cm-variable-2 {
color: #00695f;
- }
- .cm-s-style-mirror span.cm-variable-3 {
+}
+
+.cm-s-style-mirror span.cm-variable-3 {
color: #2e6e8a;
- }
- .cm-s-style-mirror span.cm-def {
+}
+
+.cm-s-style-mirror span.cm-def {
color: #d28445;
- }
- .cm-s-style-mirror span.cm-bracket {
+}
+
+.cm-s-style-mirror span.cm-bracket {
color: #202020;
- }
- .cm-s-style-mirror span.cm-tag {
- color:#000;
- }
- .cm-s-style-mirror span.cm-link {
+}
+
+.cm-s-style-mirror span.cm-tag {
+ color: #000;
+}
+
+.cm-s-style-mirror span.cm-link {
color: #b26a00;
- }
- .cm-s-style-mirror span.cm-error {
+}
+
+.cm-s-style-mirror span.cm-error {
/* background: #ac4142;
color: #f5f5f5; */
text-decoration: underline;
text-decoration-style: wavy;
text-decoration-color: #df8d8e;
- }
- .cm-s-style-mirror .CodeMirror-activeline-background {
+}
+
+.cm-s-style-mirror .CodeMirror-activeline-background {
background: #dddcdc;
- }
- .cm-s-style-mirror .CodeMirror-matchingbracket {
- color: rgb(32,32,32) !important;
- background-color: rgba(0,0,0,0.1) !important;
- }
-
\ No newline at end of file
+}
+
+.cm-s-style-mirror .CodeMirror-matchingbracket {
+ color: rgb(32, 32, 32) !important;
+ background-color: rgba(0, 0, 0, 0.1) !important;
+}
\ No newline at end of file
diff --git a/public/favicon.ico b/public/favicon.ico
deleted file mode 100644
index df36fcfb72584e00488330b560ebcf34a41c64c2..0000000000000000000000000000000000000000
GIT binary patch
literal 0
HcmV?d00001
literal 4286
zcmds*O-Phc6o&64GDVCEQHxsW(p4>LW*W<827=Unuo8sGpRux(DN@jWP-e29Wl%wj
zY84_aq9}^Am9-cWTD5GGEo#+5Fi2wX_P*bo+xO!)p*7B;iKlbFd(U~_d(U?#hLj56
zPhFkj-|A6~Qk#@g^#D^U0XT1cu=c-vu1+SElX9NR;kzAUV(q0|dl0|%h|dI$%VICy
zJnu2^L*Te9JrJMGh%-P79CL0}dq92RGU6gI{v2~|)p}sG5x0U*z<8U;Ij*hB9z?ei
z@g6Xq-pDoPl=MANPiR7%172VA%r)kevtV-_5H*QJKFmd;8yA$98zCxBZYXTNZ#QFk2(TX0;Y2dt&WitL#$96|gJY=3xX
zpCoi|YNzgO3R`f@IiEeSmKrPSf#h#Qd<$%Ej^RIeeYfsxhPMOG`S`Pz8q``=511zm
zAm)MX5AV^5xIWPyEu7u>qYs?pn$I4nL9J!=K=SGlKLXpE<5x+2cDTXq?brj?n6sp=
zphe9;_JHf40^9~}9i08r{XM$7HB!`{Ys~TK0kx<}ZQng`UPvH*11|q7&l9?@FQz;8
zx!=3<4seY*%=OlbCbcae?5^V_}*K>Uo6ZWV8mTyE^B=DKy7-sdLYkR5Z?paTgK-zyIkKjIcpyO
z{+uIt&YSa_$QnN_@t~L014dyK(fOOo+W*MIxbA6Ndgr=Y!f#Tokqv}n<7-9qfHkc3
z=>a|HWqcX8fzQCT=dqVbogRq!-S>H%yA{1w#2Pn;=e>JiEj7Hl;zdt-2f+j2%DeVD
zsW0Ab)ZK@0cIW%W7z}H{&~yGhn~D;aiP4=;m-HCo`BEI+Kd6
z={Xwx{T%b6i9IjI)Ls)S{-*mq<@~R{?$}ZKjf;^k75i_}(2MXt}^SEBVg7AI@28
zo_uPg2V)_e-`2Ois=PYoe%9u*n9({PFR)OnHJPi{dNx>KxD#iCLfl2vQGDitKtN>z|-AdCN|$jTFDg0m3O`WLD4_s#$S
diff --git a/public/index.html b/public/index.html
index 091d43d..0c1058e 100644
--- a/public/index.html
+++ b/public/index.html
@@ -1,55 +1,28 @@
-
-
-
-
-
-
- 微信 Markdown 编辑器
-
-
-
-
-
-
-
-
+
+
+
+
+
+ 微信 Markdown 编辑器
+
+
+
+
+
+
+
+
-
-
+
+
\ No newline at end of file
diff --git a/public/libs/css/show-hint.css b/public/libs/css/show-hint.css
index 5617ccc..776fa2a 100644
--- a/public/libs/css/show-hint.css
+++ b/public/libs/css/show-hint.css
@@ -1,36 +1,36 @@
.CodeMirror-hints {
- position: absolute;
- z-index: 10;
- overflow: hidden;
- list-style: none;
+ position: absolute;
+ z-index: 10;
+ overflow: hidden;
+ list-style: none;
- margin: 0;
- padding: 2px;
+ margin: 0;
+ padding: 2px;
- -webkit-box-shadow: 2px 3px 5px rgba(0,0,0,.2);
- -moz-box-shadow: 2px 3px 5px rgba(0,0,0,.2);
- box-shadow: 2px 3px 5px rgba(0,0,0,.2);
- border-radius: 3px;
- border: 1px solid silver;
+ -webkit-box-shadow: 2px 3px 5px rgba(0, 0, 0, .2);
+ -moz-box-shadow: 2px 3px 5px rgba(0, 0, 0, .2);
+ box-shadow: 2px 3px 5px rgba(0, 0, 0, .2);
+ border-radius: 3px;
+ border: 1px solid silver;
- background: white;
- font-size: 90%;
- font-family: monospace;
+ background: white;
+ font-size: 90%;
+ font-family: monospace;
- max-height: 20em;
- overflow-y: auto;
+ max-height: 20em;
+ overflow-y: auto;
}
.CodeMirror-hint {
- margin: 0;
- padding: 0 4px;
- border-radius: 2px;
- white-space: pre;
- color: black;
- cursor: pointer;
+ margin: 0;
+ padding: 0 4px;
+ border-radius: 2px;
+ white-space: pre;
+ color: black;
+ cursor: pointer;
}
li.CodeMirror-hint-active {
- background: #08f;
- color: white;
-}
+ background: #08f;
+ color: white;
+}
\ No newline at end of file
diff --git a/public/libs/css/style-mirror.css b/public/libs/css/style-mirror.css
index bf98442..8c74dff 100644
--- a/public/libs/css/style-mirror.css
+++ b/public/libs/css/style-mirror.css
@@ -14,91 +14,111 @@
font-size: 16px;
padding: 20px;
line-height: 25px;
- }
- .cm-s-style-mirror div.CodeMirror-selected {
+}
+
+.cm-s-style-mirror div.CodeMirror-selected {
background: #e0e0e0;
- }
- .cm-s-style-mirror .CodeMirror-line::selection,
- .cm-s-style-mirror .CodeMirror-line > span::selection,
- .cm-s-style-mirror .CodeMirror-line > span > span::selection {
+}
+
+.cm-s-style-mirror .CodeMirror-line::selection,
+.cm-s-style-mirror .CodeMirror-line>span::selection,
+.cm-s-style-mirror .CodeMirror-line>span>span::selection {
background: #e0e0e0;
- }
- .cm-s-style-mirror .CodeMirror-line::-moz-selection,
- .cm-s-style-mirror .CodeMirror-line > span::-moz-selection,
- .cm-s-style-mirror .CodeMirror-line > span > span::-moz-selection {
+}
+
+.cm-s-style-mirror .CodeMirror-line::-moz-selection,
+.cm-s-style-mirror .CodeMirror-line>span::-moz-selection,
+.cm-s-style-mirror .CodeMirror-line>span>span::-moz-selection {
background: #e0e0e0;
- }
- .cm-s-style-mirror .CodeMirror-gutters {
+}
+
+.cm-s-style-mirror .CodeMirror-gutters {
background: #f5f5f5;
border-right: 0px;
- }
- .cm-s-style-mirror .CodeMirror-guttermarker {
+}
+
+.cm-s-style-mirror .CodeMirror-guttermarker {
color: #ac4142;
- }
- .cm-s-style-mirror .CodeMirror-guttermarker-subtle {
+}
+
+.cm-s-style-mirror .CodeMirror-guttermarker-subtle {
color: #b0b0b0;
- }
- .cm-s-style-mirror .CodeMirror-linenumber {
+}
+
+.cm-s-style-mirror .CodeMirror-linenumber {
color: #b0b0b0;
- }
- .cm-s-style-mirror .CodeMirror-cursor {
+}
+
+.cm-s-style-mirror .CodeMirror-cursor {
border-left: 1px solid #505050;
- }
-
- .cm-s-style-mirror span.cm-comment {
- color:green;
- }
- .cm-s-style-mirror span.cm-atom {
+}
+
+.cm-s-style-mirror span.cm-comment {
+ color: green;
+}
+
+.cm-s-style-mirror span.cm-atom {
color: #aa759f;
- }
- .cm-s-style-mirror span.cm-number {
+}
+
+.cm-s-style-mirror span.cm-number {
color: #aa759f;
- }
-
- .cm-s-style-mirror span.cm-property,
- .cm-s-style-mirror span.cm-attribute {
+}
+
+.cm-s-style-mirror span.cm-property,
+.cm-s-style-mirror span.cm-attribute {
color: #90a959;
- }
- .cm-s-style-mirror span.cm-keyword {
+}
+
+.cm-s-style-mirror span.cm-keyword {
color: #023a52;
- }
- .cm-s-style-mirror span.cm-string {
+}
+
+.cm-s-style-mirror span.cm-string {
color: #e46918;
- }
-
- .cm-s-style-mirror span.cm-variable {
+}
+
+.cm-s-style-mirror span.cm-variable {
color: #90a959;
- }
- .cm-s-style-mirror span.cm-variable-2 {
+}
+
+.cm-s-style-mirror span.cm-variable-2 {
color: #00695f;
- }
- .cm-s-style-mirror span.cm-variable-3 {
+}
+
+.cm-s-style-mirror span.cm-variable-3 {
color: #2e6e8a;
- }
- .cm-s-style-mirror span.cm-def {
+}
+
+.cm-s-style-mirror span.cm-def {
color: #d28445;
- }
- .cm-s-style-mirror span.cm-bracket {
+}
+
+.cm-s-style-mirror span.cm-bracket {
color: #202020;
- }
- .cm-s-style-mirror span.cm-tag {
- color:#000;
- }
- .cm-s-style-mirror span.cm-link {
+}
+
+.cm-s-style-mirror span.cm-tag {
+ color: #000;
+}
+
+.cm-s-style-mirror span.cm-link {
color: #b26a00;
- }
- .cm-s-style-mirror span.cm-error {
+}
+
+.cm-s-style-mirror span.cm-error {
/* background: #ac4142;
color: #f5f5f5; */
text-decoration: underline;
text-decoration-style: wavy;
text-decoration-color: #df8d8e;
- }
- .cm-s-style-mirror .CodeMirror-activeline-background {
+}
+
+.cm-s-style-mirror .CodeMirror-activeline-background {
background: #dddcdc;
- }
- .cm-s-style-mirror .CodeMirror-matchingbracket {
- color: rgb(32,32,32) !important;
- background-color: rgba(0,0,0,0.1) !important;
- }
-
\ No newline at end of file
+}
+
+.cm-s-style-mirror .CodeMirror-matchingbracket {
+ color: rgb(32, 32, 32) !important;
+ background-color: rgba(0, 0, 0, 0.1) !important;
+}
\ No newline at end of file
diff --git a/src/components/Loading.vue b/src/components/Loading.vue
index da6502d..a630ce9 100644
--- a/src/components/Loading.vue
+++ b/src/components/Loading.vue
@@ -1,16 +1,17 @@
`
- }
-
- this.setOptions = newOpts => {
- this.opts = merge(this.opts, newOpts)
- }
-
- this.hasFootnotes = () => footnotes.length !== 0
-
- this.getRenderer = (status) => {
- footnotes = []
- footnoteIndex = 0
-
- styleMapping = this.buildTheme(this.opts.theme)
- let renderer = new marked.Renderer()
-
- renderer.heading = (text, level) => {
- switch (level) {
- case 1:
- return `${text}
`
- case 2:
- return `${text}
`
- case 3:
- return `${text}
`
- default:
- return `${text}
`
- }
- }
- renderer.paragraph = text => {
- if (text.indexOf('
`
}
- renderer.blockquote = text => {
- text = text.replace(//, ``)
- return `
${text}
`
+ this.setOptions = newOpts => {
+ this.opts = merge(this.opts, newOpts)
}
- renderer.code = (text, infoString) => {
- text = text.replace(//g, '>')
- let lines = text.split('\n')
- let codeLines = []
- let numbers = []
+ this.hasFootnotes = () => footnotes.length !== 0
- for (let i = 0; i < lines.length; i++) {
- const line = lines[i]
- codeLines.push(`${(line || '
')}
`)
- numbers.push('')
- }
- let lang = infoString || ''
+ this.getRenderer = (status) => {
+ footnotes = []
+ footnoteIndex = 0
- return `
+ styleMapping = this.buildTheme(this.opts.theme)
+ let renderer = new marked.Renderer()
+
+ renderer.heading = (text, level) => {
+ switch (level) {
+ case 1:
+ return `${text}
`
+ case 2:
+ return `${text}
`
+ case 3:
+ return `${text}
`
+ default:
+ return `${text}
`
+ }
+ }
+ renderer.paragraph = text => {
+ if (text.indexOf('