Files
outline/shared/editor/marks/Italic.ts
T
Tom Moor bf45e97641 chore: Enforce type import consistency (#10968)
* Update types

* fix circular dep

* type imports

* lint type imports and --fix
2025-12-19 23:07:02 -05:00

54 lines
1.1 KiB
TypeScript

import { toggleMark } from "prosemirror-commands";
import type { InputRule } from "prosemirror-inputrules";
import type { MarkSpec, MarkType } from "prosemirror-model";
import type { Command } from "prosemirror-state";
import { markInputRuleForPattern } from "../lib/markInputRule";
import Mark from "./Mark";
export default class Italic extends Mark {
get name() {
return "em";
}
get schema(): MarkSpec {
return {
parseDOM: [
{ tag: "i" },
{ tag: "em" },
{
style: "font-style",
getAttrs: (value) => (value === "italic" ? null : false),
},
],
toDOM: () => ["em"],
};
}
inputRules({ type }: { type: MarkType }): InputRule[] {
return [
markInputRuleForPattern("_", type),
markInputRuleForPattern("*", type),
];
}
keys({ type }: { type: MarkType }): Record<string, Command> {
return {
"Mod-i": toggleMark(type),
"Mod-I": toggleMark(type),
};
}
toMarkdown() {
return {
open: "*",
close: "*",
mixable: true,
expelEnclosingWhitespace: true,
};
}
parseMarkdown() {
return { mark: "em" };
}
}