actuel-inactuel/site/plugins/panel-text-comments/index.js
2024-03-09 11:27:10 +01:00

15 lines
328 B
JavaScript

(function () {
"use strict";
window.panel.plugin("adrienpayet/panel-text-comments", {
textareaButtons: {
highlight: {
label: "Highlight",
icon: "wand",
click: function () {
this.command("toggle", "<mark>", "</mark>");
},
shortcut: "m",
},
},
});
})();