Skip to content

Commit

Permalink
chore(release): 0.8.13
Browse files Browse the repository at this point in the history
Co-authored-by: sunsonliu <[email protected]>
Co-authored-by: ivorwei <[email protected]>
Co-authored-by: barryhu <[email protected]>
Co-authored-by: kiritocui <[email protected]>
  • Loading branch information
5 people committed Feb 17, 2023
1 parent 6a6e21d commit b7a0e0f
Show file tree
Hide file tree
Showing 19 changed files with 303 additions and 110 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,23 @@

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.

### [0.8.13](https://github.com/Tencent/cherry-markdown/compare/v0.8.12...v0.8.13) (2023-02-17)


### Features

* (hooks) 自动超链接-支持展示固定长度字符 ([#391](https://github.com/Tencent/cherry-markdown/issues/391)) ([69056e4](https://github.com/Tencent/cherry-markdown/commit/69056e4ad9490bb09c1350b4f39a4d5b4e96e6fe))
* 丰富图标,优化侧边栏切换主题按钮的下拉框定位 ([d17d0fe](https://github.com/Tencent/cherry-markdown/commit/d17d0fee634fd0ced49c3102d3b372fda61e0542))
* 丰富图标,优化侧边栏切换主题按钮的下拉框定位 ([452ae1f](https://github.com/Tencent/cherry-markdown/commit/452ae1fd63a052efde307b689f61e14b291984ed))
* 增加vscode plugin,可以在vscode扩展中输入cherry-markdown搜索安装该插件 ([61be297](https://github.com/Tencent/cherry-markdown/commit/61be29709f7b1c4cbc107c00e3ed5711d3b67554))


### Bug Fixes

* [#388](https://github.com/Tencent/cherry-markdown/issues/388) 修复复制粘贴图片时,图片alt属性丢失的问题 ([21a505a](https://github.com/Tencent/cherry-markdown/commit/21a505af9a772307183e9ea54338cbfec8850943))
* unity header anchor safe id ([d28c488](https://github.com/Tencent/cherry-markdown/commit/d28c4883dd0c215726ec4e5f41914026b6a94104))
* 复制粘贴代码块的时候会丢失\t ([a1179c5](https://github.com/Tencent/cherry-markdown/commit/a1179c5004c8e58efe243418217e9b764419846b))

### [0.8.12](https://github.com/Tencent/cherry-markdown/compare/v0.8.11...v0.8.12) (2023-01-13)


Expand Down
2 changes: 1 addition & 1 deletion dist/cherry-markdown.core.common.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/cherry-markdown.core.js

Large diffs are not rendered by default.

71 changes: 69 additions & 2 deletions dist/cherry-markdown.css
Original file line number Diff line number Diff line change
Expand Up @@ -290,6 +290,54 @@
content: "\ea59";
}

.ch-icon-create:before {
content: "\ea5a";
}

.ch-icon-download:before {
content: "\ea5b";
}

.ch-icon-edit:before {
content: "\ea5c";
}

.ch-icon-export:before {
content: "\ea5d";
}

.ch-icon-folder-open:before {
content: "\ea5e";
}

.ch-icon-folder:before {
content: "\ea5f";
}

.ch-icon-help:before {
content: "\ea60";
}

.ch-icon-pen-fill:before {
content: "\ea61";
}

.ch-icon-pen:before {
content: "\ea62";
}

.ch-icon-search:before {
content: "\ea63";
}

.ch-icon-tips:before {
content: "\ea64";
}

.ch-icon-warn:before {
content: "\ea65";
}

.cherry-markdown {
word-break: break-all;
/* Specify class=linenums on a pre to get line numbering */
Expand Down Expand Up @@ -440,8 +488,22 @@
.cherry-markdown table th {
background-color: #eee;
}
.cherry-markdown .link-quote {
color: #3582fb;
}
.cherry-markdown a {
color: #3582fb;
position: relative;
text-decoration: none;
}
.cherry-markdown a[target=_blank] {
padding: 0 2px;
}
.cherry-markdown a[target=_blank]::after {
content: "\ea10";
font-size: 12px;
font-family: "ch-icon";
margin: 0 2px;
}
.cherry-markdown a:hover {
color: #056bad;
Expand Down Expand Up @@ -687,7 +749,12 @@
.cherry-markdown.head-num {
counter-reset: level1;
}
.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 {
.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 {
width: auto;
font-size: inherit;
vertical-align: inherit;
Expand Down Expand Up @@ -1962,7 +2029,7 @@ div[data-type=codeBlock] .token.inserted {
}
.cherry .cherry-insert-table-menu {
display: block;
position: absolute;
position: fixed;
top: 40px;
left: 40px;
border-collapse: separate;
Expand Down
2 changes: 1 addition & 1 deletion dist/cherry-markdown.engine.core.common.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/cherry-markdown.engine.core.esm.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/cherry-markdown.engine.core.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/cherry-markdown.esm.js

Large diffs are not rendered by default.

Loading

0 comments on commit b7a0e0f

Please sign in to comment.