Skip to content

Commit 99d7b46

Browse files
authored
Merge branch 'main' into feat/trim-copied-list
2 parents 86e517b + df8d5e7 commit 99d7b46

File tree

5 files changed

+13
-6
lines changed

5 files changed

+13
-6
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## [15.2.2](https://github.com/gravity-ui/markdown-editor/compare/v15.2.1...v15.2.2) (2025-02-27)
4+
5+
6+
### Bug Fixes
7+
8+
* **Color:** fixed import of color md plugin ([#661](https://github.com/gravity-ui/markdown-editor/issues/661)) ([d260605](https://github.com/gravity-ui/markdown-editor/commit/d2606052c366d3f01c31cbb62bb460757171fa86))
9+
310
## [15.2.1](https://github.com/gravity-ui/markdown-editor/compare/v15.2.0...v15.2.1) (2025-02-26)
411

512

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@gravity-ui/markdown-editor",
3-
"version": "15.2.1",
3+
"version": "15.2.2",
44
"description": "Markdown wysiwyg and markup editor",
55
"license": "MIT",
66
"repository": {

src/extensions/yfm/Color/ColorSpecs/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import mdPlugin from 'markdown-it-color';
1+
import mdPlugin from 'src/markdown-it/color';
22

33
import type {ExtensionAuto} from '../../../../core';
44
import {markTypeFactory} from '../../../../utils/schema';

src/markdown-it/color.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
import color from 'markdown-it-color';
1+
import {colorPlugin} from 'markdown-it-color';
22

3-
export default color;
3+
export default colorPlugin;

0 commit comments

Comments
 (0)