forked from FoundKeyGang/FoundKey
いい感じにやった
This commit is contained in:
parent
8c9ae6e8cf
commit
76e2892949
6 changed files with 53 additions and 35 deletions
|
@ -188,6 +188,16 @@ const elements = [
|
|||
};
|
||||
},
|
||||
|
||||
// label
|
||||
code => {
|
||||
if (code[0] != '@') return null;
|
||||
const label = code.match(/^@([a-zA-Z_-]+?)\n/)[0];
|
||||
return {
|
||||
html: `<span class="label">${label}</span>`,
|
||||
next: label.length
|
||||
};
|
||||
},
|
||||
|
||||
// extract vars
|
||||
(code, i, source, vars) => {
|
||||
const prev = source[i - 1];
|
||||
|
|
|
@ -107,46 +107,52 @@ a
|
|||
*
|
||||
cursor pointer
|
||||
|
||||
pre > code
|
||||
font-family Consolas, 'Courier New', Courier, Monaco, monospace
|
||||
tab-size 2
|
||||
pre
|
||||
overflow auto
|
||||
|
||||
.comment
|
||||
opacity 0.5
|
||||
> code
|
||||
font-family Consolas, 'Courier New', Courier, Monaco, monospace
|
||||
tab-size 2
|
||||
|
||||
.string
|
||||
color #e96900
|
||||
.comment
|
||||
opacity 0.5
|
||||
|
||||
.regexp
|
||||
color #e9003f
|
||||
.string
|
||||
color #e96900
|
||||
|
||||
.keyword
|
||||
color #2973b7
|
||||
.regexp
|
||||
color #e9003f
|
||||
|
||||
&.true
|
||||
&.false
|
||||
&.null
|
||||
&.nil
|
||||
&.undefined
|
||||
.keyword
|
||||
color #2973b7
|
||||
|
||||
&.true
|
||||
&.false
|
||||
&.null
|
||||
&.nil
|
||||
&.undefined
|
||||
color #ae81ff
|
||||
|
||||
.symbol
|
||||
color #42b983
|
||||
|
||||
.number
|
||||
color #ae81ff
|
||||
|
||||
.symbol
|
||||
color #42b983
|
||||
.var:not(.keyword)
|
||||
font-weight bold
|
||||
font-style italic
|
||||
//text-decoration underline
|
||||
|
||||
.number
|
||||
color #ae81ff
|
||||
.method
|
||||
font-style italic
|
||||
color #8964c1
|
||||
|
||||
.var:not(.keyword)
|
||||
font-weight bold
|
||||
font-style italic
|
||||
//text-decoration underline
|
||||
.property
|
||||
color #a71d5d
|
||||
|
||||
.method
|
||||
font-style italic
|
||||
color #8964c1
|
||||
|
||||
.property
|
||||
color #a71d5d
|
||||
.label
|
||||
color #e9003f
|
||||
|
||||
mk-locker
|
||||
display block
|
||||
|
|
|
@ -91,9 +91,9 @@
|
|||
font-size 1.1em
|
||||
color #717171
|
||||
|
||||
|
||||
|
||||
|
||||
pre
|
||||
max-height 120px
|
||||
font-size 80%
|
||||
|
||||
</style>
|
||||
</mk-timeline-post-sub>
|
||||
|
|
|
@ -233,7 +233,6 @@
|
|||
|
||||
pre
|
||||
padding 16px
|
||||
overflow auto
|
||||
font-size 80%
|
||||
color #525252
|
||||
background #f8f8f8
|
||||
|
|
|
@ -91,6 +91,10 @@
|
|||
font-size 1.1em
|
||||
color #717171
|
||||
|
||||
pre
|
||||
max-height 120px
|
||||
font-size 80%
|
||||
|
||||
</style>
|
||||
<script>@post = @opts.post</script>
|
||||
</mk-timeline-post-sub>
|
||||
|
|
|
@ -212,7 +212,6 @@
|
|||
|
||||
pre
|
||||
padding 16px
|
||||
overflow auto
|
||||
font-size 80%
|
||||
color #525252
|
||||
background #f8f8f8
|
||||
|
|
Loading…
Reference in a new issue