It’d be great if you could set the options available to the end user in the markdown editor.
Bumping this request again; we use a field for text on our frontend app, but doesn’t support checkboxes, custom HTML etc, so having these options available in the markdown editor is causing users some confusion!
FYI, for anybody who needs the same, managed to use bit of custom CSS to hide for now:
/* Hide the “Code Highlight” button (Code +) */
button .tabler-icon-code-plus {
display: none !important;
}
/* Hide the “Checkbox” button (List Check) */
button .tabler-icon-list-check {
display: none !important;
}
/* Hide the “Custom HTML” button (Code) */
button .tabler-icon-code {
display: none !important;
}