chore(ckeditor): set correct metadata

This commit is contained in:
Elian Doran 2025-05-05 23:04:27 +03:00
parent 307c322165
commit ff0a24df55
No known key found for this signature in database
5 changed files with 27 additions and 21 deletions

View File

@ -9,7 +9,7 @@
{
"name": "admonition",
"type": "Button",
"iconPath": "theme/icons/ckeditor.svg"
"iconPath": "theme/icons/admonition.svg"
}
],
"htmlOutput": [

View File

@ -7,9 +7,9 @@
"path": "src/footnotes.ts",
"uiComponents": [
{
"name": "footnotes",
"name": "insertFootnote",
"type": "Button",
"iconPath": "theme/icons/ckeditor.svg"
"iconPath": "theme/icons/insert-footnote.svg"
}
]
}

View File

@ -9,7 +9,7 @@
{
"name": "keyboardMarker",
"type": "Button",
"iconPath": "theme/icons/ckeditor.svg"
"iconPath": "theme/icons/kbd.svg"
}
]
}

View File

@ -1,17 +1,23 @@
{
"plugins": [
{
"name": "Math",
"className": "Math",
"description": "Adds text to the editor.",
"path": "src/math.ts",
"uiComponents": [
{
"name": "math",
"type": "Button",
"iconPath": "theme/icons/ckeditor.svg"
}
]
}
]
"plugins": [
{
"name": "Math",
"className": "Math",
"description": "Adds mathematical formulas to the editor.",
"path": "src/math.js",
"uiComponents": [
{
"name": "math",
"type": "Button",
"iconPath": "theme/icons/math.svg"
}
]
},
{
"name": "AutoformatMath",
"className": "AutoformatMath",
"description": "Implements autoformatting with mathematical formulas.",
"path": "src/autoformatmath.js"
}
]
}

View File

@ -3,13 +3,13 @@
{
"name": "Mermaid",
"className": "Mermaid",
"description": "Adds text to the editor.",
"description": "Mermaid widget for CKEditor 5.",
"path": "src/mermaid.ts",
"uiComponents": [
{
"name": "mermaid",
"type": "Button",
"iconPath": "theme/icons/ckeditor.svg"
"iconPath": "theme/icons/insert.svg"
}
]
}