Skip to content

Commit

Permalink
♻️ #1525
Browse files Browse the repository at this point in the history
  • Loading branch information
Vanessa219 committed Dec 17, 2023
1 parent 6bc8fa1 commit c86efc2
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@

### v3.9.8 / 2023-12

* [sv 模式中在脚注下方输入文本出现渲染错误](https://github.com/Vanessa219/vditor/issues/1518) `修复缺陷`
* [KaTeX 渲染支持 macros](https://github.com/Vanessa219/vditor/issues/1519) `引入特性`
* [简化 CDN 配置](https://github.com/Vanessa219/vditor/issues/1522) `改进功能`

Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/ts/sv/inputEvent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import {scrollCenter} from "../util/editorCommonEvent";
import {hasClosestByAttribute} from "../util/hasClosest";
import {getSelectPosition, setRangeByWbr} from "../util/selection";
import {getSideByType, processAfterRender, processSpinVditorSVDOM} from "./process";
import { combineFootnote } from "../util/combineFootnote"
import {combineFootnote} from "./combineFootnote";

export const inputEvent = (vditor: IVditor, event?: InputEvent) => {
const range = getSelection().getRangeAt(0).cloneRange();
Expand Down
2 changes: 1 addition & 1 deletion src/ts/sv/process.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import {hasClosestByTag} from "../util/hasClosestByHeadings";
import {log} from "../util/log";
import {getEditorRange, setRangeByWbr} from "../util/selection";
import {inputEvent} from "./inputEvent";
import { combineFootnote } from "../util/combineFootnote"
import {combineFootnote} from "./combineFootnote";


export const processPaste = (vditor: IVditor, text: string) => {
Expand Down
2 changes: 1 addition & 1 deletion src/ts/toolbar/EditMode.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import {
removeCurrentToolbar,
showToolbar, toggleSubMenu,
} from "./setToolbar";
import { combineFootnote } from "../util/combineFootnote"
import {combineFootnote} from "../sv/combineFootnote";

export const setEditMode = (vditor: IVditor, type: string, event: Event | string) => {
let markdownText;
Expand Down

0 comments on commit c86efc2

Please sign in to comment.