Ese editor de texto es algo limitado, pero se puede agregar un poco mas de funcionalidad.
Se tiene que crear una vista custom en esta ruta: C:\inetpub\wwwroot\Evolution\Views\Shared
Copia dentro de esa carpeta el archivo ContentEditor.ascx lo abres para editar, casi al final hay una funcion javascript CargarEditor y sustituye su contenido por lo que aparece al final
Hay un boton que dice HTML y con ese se puede editar el codigo HTML del contenido
function CargarEditor<%= contentEditorId%>() {
$("#<%= contentEditorId %>").tinymce({
script_url : '<%= Html.MakeAbsoluteURL("/Scripts/tiny_mce/tiny_mce.js") %>',
theme: "advanced",
// General options
theme : "advanced",
plugins : "pagebreak,style,layer,table,save,advimage,advlink,emotions,iespell,inlinepopups,insertdatetime,preview,media,searchreplace,print,contextmenu,paste,directionality,fullscreen,noneditable,visualchars,nonbreaking,xhtmlxtras,template",
// Theme options
theme_advanced_buttons1 : "bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,formatselect,fontselect,fontsizeselect",
theme_advanced_buttons2 : "cut,copy,paste,|,search,replace,|,bullist,numlist,|,outdent,indent,|,undo,redo,|,link,unlink,code,|,forecolor,backcolor",
theme_advanced_buttons3 : "tablecontrols,|,hr,removeformat,visualaid,|,emotions,iespell,",
theme_advanced_buttons4 : "",
theme_advanced_toolbar_location : "top",
theme_advanced_toolbar_align : "left",
theme_advanced_statusbar_location : "bottom",
theme_advanced_resizing : true
});
}