Skip to content

Commit a1b1e28

Browse files
committed
0.6.3
1 parent 6f1ab11 commit a1b1e28

29 files changed

Lines changed: 54 additions & 54 deletions

docs/functions/Delete.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
> **Delete**(`editor`, `range?`): `void`
88
9-
Defined in: [commands.ts:20](https://github.com/inokawa/editate/blob/ae3dbcbc9a7ecbc7eb637b2477fb1c4d08293cde/src/commands.ts#L20)
9+
Defined in: [commands.ts:22](https://github.com/inokawa/editate/blob/6f1ab1108948a1847a30d96f16eb6a6cb4dc084b/src/commands.ts#L22)
1010

1111
Delete content in the selection or specified range.
1212

docs/functions/Format.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
> **Format**\<`T`, `N`, `K`\>(`editor`, `key`, `value`, `range?`): `void`
88
9-
Defined in: [commands.ts:83](https://github.com/inokawa/editate/blob/ae3dbcbc9a7ecbc7eb637b2477fb1c4d08293cde/src/commands.ts#L83)
9+
Defined in: [commands.ts:85](https://github.com/inokawa/editate/blob/6f1ab1108948a1847a30d96f16eb6a6cb4dc084b/src/commands.ts#L85)
1010

1111
Format content in the selection or specified range.
1212

docs/functions/InsertNode.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
> **InsertNode**\<`T`\>(`editor`, `node`, `position?`): `void`
88
9-
Defined in: [commands.ts:41](https://github.com/inokawa/editate/blob/ae3dbcbc9a7ecbc7eb637b2477fb1c4d08293cde/src/commands.ts#L41)
9+
Defined in: [commands.ts:43](https://github.com/inokawa/editate/blob/6f1ab1108948a1847a30d96f16eb6a6cb4dc084b/src/commands.ts#L43)
1010

1111
Insert node at the caret or specified position.
1212

docs/functions/InsertText.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
> **InsertText**(`editor`, `text`, `position?`): `void`
88
9-
Defined in: [commands.ts:30](https://github.com/inokawa/editate/blob/ae3dbcbc9a7ecbc7eb637b2477fb1c4d08293cde/src/commands.ts#L30)
9+
Defined in: [commands.ts:32](https://github.com/inokawa/editate/blob/6f1ab1108948a1847a30d96f16eb6a6cb4dc084b/src/commands.ts#L32)
1010

1111
Insert text at the caret or specified position.
1212

docs/functions/Redo.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
> **Redo**(`editor`): `void`
88
9-
Defined in: [plugins/history.ts:116](https://github.com/inokawa/editate/blob/ae3dbcbc9a7ecbc7eb637b2477fb1c4d08293cde/src/plugins/history.ts#L116)
9+
Defined in: [plugins/history.ts:116](https://github.com/inokawa/editate/blob/6f1ab1108948a1847a30d96f16eb6a6cb4dc084b/src/plugins/history.ts#L116)
1010

1111
Redos the last undone edit.
1212

docs/functions/Redoable.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
> **Redoable**(`editor`): `boolean`
88
9-
Defined in: [plugins/history.ts:130](https://github.com/inokawa/editate/blob/ae3dbcbc9a7ecbc7eb637b2477fb1c4d08293cde/src/plugins/history.ts#L130)
9+
Defined in: [plugins/history.ts:130](https://github.com/inokawa/editate/blob/6f1ab1108948a1847a30d96f16eb6a6cb4dc084b/src/plugins/history.ts#L130)
1010

1111
Check if the history can be redone.
1212

docs/functions/ReplaceDoc.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
> **ReplaceDoc**\<`T`\>(`editor`, `fragment`): `void`
88
9-
Defined in: [commands.ts:66](https://github.com/inokawa/editate/blob/ae3dbcbc9a7ecbc7eb637b2477fb1c4d08293cde/src/commands.ts#L66)
9+
Defined in: [commands.ts:68](https://github.com/inokawa/editate/blob/6f1ab1108948a1847a30d96f16eb6a6cb4dc084b/src/commands.ts#L68)
1010

1111
Replace document in the editor.
1212

docs/functions/ReplaceText.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
> **ReplaceText**(`editor`, `text`): `void`
88
9-
Defined in: [commands.ts:56](https://github.com/inokawa/editate/blob/ae3dbcbc9a7ecbc7eb637b2477fb1c4d08293cde/src/commands.ts#L56)
9+
Defined in: [commands.ts:58](https://github.com/inokawa/editate/blob/6f1ab1108948a1847a30d96f16eb6a6cb4dc084b/src/commands.ts#L58)
1010

1111
Replace text in the selection or specified range.
1212

docs/functions/SetBlockAttr.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
> **SetBlockAttr**\<`T`, `N`, `K`\>(`editor`, `key`, `value`, `offset?`): `void`
88
9-
Defined in: [commands.ts:120](https://github.com/inokawa/editate/blob/ae3dbcbc9a7ecbc7eb637b2477fb1c4d08293cde/src/commands.ts#L120)
9+
Defined in: [commands.ts:134](https://github.com/inokawa/editate/blob/6f1ab1108948a1847a30d96f16eb6a6cb4dc084b/src/commands.ts#L134)
1010

1111
Set attr to a block node at the caret or specified position.
1212

docs/functions/ToggleBlockAttr.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
> **ToggleBlockAttr**\<`T`, `N`, `K`\>(`editor`, `key`, `onValue`, `offValue`, `offset?`): `void`
88
9-
Defined in: [commands.ts:137](https://github.com/inokawa/editate/blob/ae3dbcbc9a7ecbc7eb637b2477fb1c4d08293cde/src/commands.ts#L137)
9+
Defined in: [commands.ts:151](https://github.com/inokawa/editate/blob/6f1ab1108948a1847a30d96f16eb6a6cb4dc084b/src/commands.ts#L151)
1010

1111
Toggle attr of block node at the caret or specified position.
1212

0 commit comments

Comments
 (0)