From 2c8edb413ef0cd6806c71baa27a872f890756c88 Mon Sep 17 00:00:00 2001 From: Atmois Date: Mon, 12 Jan 2026 16:02:45 +0000 Subject: [PATCH] fix: add "latex" alias for math command --- packages/ckeditor5/src/extra_slash_commands.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/ckeditor5/src/extra_slash_commands.ts b/packages/ckeditor5/src/extra_slash_commands.ts index ec77b1f94..142ce5052 100644 --- a/packages/ckeditor5/src/extra_slash_commands.ts +++ b/packages/ckeditor5/src/extra_slash_commands.ts @@ -54,6 +54,7 @@ export default function buildExtraCommands(): SlashCommandDefinition[] { id: "math", title: "Math equation", description: "Insert a math equation", + aliases: [ "latex", "equation" ], icon: mathIcons.ckeditor, execute: (editor: Editor) => editor.plugins.get(MathUI)._showUI() },