Skip to content

Commit b7a0e0f

Browse files
jiawei686sunsonliulyngaibarryhu
committed
chore(release): 0.8.13
Co-authored-by: sunsonliu <[email protected]> Co-authored-by: ivorwei <[email protected]> Co-authored-by: barryhu <[email protected]> Co-authored-by: kiritocui <[email protected]>
1 parent 6a6e21d commit b7a0e0f

19 files changed

+303
-110
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,23 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
### [0.8.13](https://github.com/Tencent/cherry-markdown/compare/v0.8.12...v0.8.13) (2023-02-17)
6+
7+
8+
### Features
9+
10+
* (hooks) 自动超链接-支持展示固定长度字符 ([#391](https://github.com/Tencent/cherry-markdown/issues/391)) ([69056e4](https://github.com/Tencent/cherry-markdown/commit/69056e4ad9490bb09c1350b4f39a4d5b4e96e6fe))
11+
* 丰富图标,优化侧边栏切换主题按钮的下拉框定位 ([d17d0fe](https://github.com/Tencent/cherry-markdown/commit/d17d0fee634fd0ced49c3102d3b372fda61e0542))
12+
* 丰富图标,优化侧边栏切换主题按钮的下拉框定位 ([452ae1f](https://github.com/Tencent/cherry-markdown/commit/452ae1fd63a052efde307b689f61e14b291984ed))
13+
* 增加vscode plugin,可以在vscode扩展中输入cherry-markdown搜索安装该插件 ([61be297](https://github.com/Tencent/cherry-markdown/commit/61be29709f7b1c4cbc107c00e3ed5711d3b67554))
14+
15+
16+
### Bug Fixes
17+
18+
* [#388](https://github.com/Tencent/cherry-markdown/issues/388) 修复复制粘贴图片时,图片alt属性丢失的问题 ([21a505a](https://github.com/Tencent/cherry-markdown/commit/21a505af9a772307183e9ea54338cbfec8850943))
19+
* unity header anchor safe id ([d28c488](https://github.com/Tencent/cherry-markdown/commit/d28c4883dd0c215726ec4e5f41914026b6a94104))
20+
* 复制粘贴代码块的时候会丢失\t ([a1179c5](https://github.com/Tencent/cherry-markdown/commit/a1179c5004c8e58efe243418217e9b764419846b))
21+
522
### [0.8.12](https://github.com/Tencent/cherry-markdown/compare/v0.8.11...v0.8.12) (2023-01-13)
623

724

dist/cherry-markdown.core.common.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/cherry-markdown.core.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/cherry-markdown.css

Lines changed: 69 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -290,6 +290,54 @@
290290
content: "\ea59";
291291
}
292292

293+
.ch-icon-create:before {
294+
content: "\ea5a";
295+
}
296+
297+
.ch-icon-download:before {
298+
content: "\ea5b";
299+
}
300+
301+
.ch-icon-edit:before {
302+
content: "\ea5c";
303+
}
304+
305+
.ch-icon-export:before {
306+
content: "\ea5d";
307+
}
308+
309+
.ch-icon-folder-open:before {
310+
content: "\ea5e";
311+
}
312+
313+
.ch-icon-folder:before {
314+
content: "\ea5f";
315+
}
316+
317+
.ch-icon-help:before {
318+
content: "\ea60";
319+
}
320+
321+
.ch-icon-pen-fill:before {
322+
content: "\ea61";
323+
}
324+
325+
.ch-icon-pen:before {
326+
content: "\ea62";
327+
}
328+
329+
.ch-icon-search:before {
330+
content: "\ea63";
331+
}
332+
333+
.ch-icon-tips:before {
334+
content: "\ea64";
335+
}
336+
337+
.ch-icon-warn:before {
338+
content: "\ea65";
339+
}
340+
293341
.cherry-markdown {
294342
word-break: break-all;
295343
/* Specify class=linenums on a pre to get line numbering */
@@ -440,8 +488,22 @@
440488
.cherry-markdown table th {
441489
background-color: #eee;
442490
}
491+
.cherry-markdown .link-quote {
492+
color: #3582fb;
493+
}
443494
.cherry-markdown a {
444495
color: #3582fb;
496+
position: relative;
497+
text-decoration: none;
498+
}
499+
.cherry-markdown a[target=_blank] {
500+
padding: 0 2px;
501+
}
502+
.cherry-markdown a[target=_blank]::after {
503+
content: "\ea10";
504+
font-size: 12px;
505+
font-family: "ch-icon";
506+
margin: 0 2px;
445507
}
446508
.cherry-markdown a:hover {
447509
color: #056bad;
@@ -687,7 +749,12 @@
687749
.cherry-markdown.head-num {
688750
counter-reset: level1;
689751
}
690-
.cherry-markdown.head-num h1 .anchor:before, .cherry-markdown.head-num h2 .anchor:before, .cherry-markdown.head-num h3 .anchor:before, .cherry-markdown.head-num h4 .anchor:before, .cherry-markdown.head-num h5 .anchor:before, .cherry-markdown.head-num h6 .anchor:before {
752+
.cherry-markdown.head-num h1 .anchor:before,
753+
.cherry-markdown.head-num h2 .anchor:before,
754+
.cherry-markdown.head-num h3 .anchor:before,
755+
.cherry-markdown.head-num h4 .anchor:before,
756+
.cherry-markdown.head-num h5 .anchor:before,
757+
.cherry-markdown.head-num h6 .anchor:before {
691758
width: auto;
692759
font-size: inherit;
693760
vertical-align: inherit;
@@ -1962,7 +2029,7 @@ div[data-type=codeBlock] .token.inserted {
19622029
}
19632030
.cherry .cherry-insert-table-menu {
19642031
display: block;
1965-
position: absolute;
2032+
position: fixed;
19662033
top: 40px;
19672034
left: 40px;
19682035
border-collapse: separate;

dist/cherry-markdown.engine.core.common.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/cherry-markdown.engine.core.esm.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/cherry-markdown.engine.core.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/cherry-markdown.esm.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)