Dan
01/11/2024, 10:33 AM<ol>
and <ul>
) in the RTE datatype Umbraco 12? I don't want editors to be able to choose the list style types (bullets, square, circle etc) which seems to be what the default UI allows now. I just want the buttons without the additional options.D_Inventor
01/11/2024, 11:38 AMjson
"RichTextEditor": {
"CustomConfig": {
"advlist_bullet_styles": "default",
"advlist_number_styles": "default"
}
}
You can find the RichTextEditor config section under Umbraco:CMS
in your appsettings.json fileDan
01/11/2024, 12:47 PM