Is there a way to change the default editor from Markdown to Textile?
If not, can I edit the files in core/editors/markitup or add a 'Textile Block' template?
<perch:content type=“textarea” id=“desc” label=“Description” editor=“textile”>
Should work.
textile isn't an editor, it's a formatting language. The editor by default is simplemde which doesn't support Textile. So the change would be:
textile
simplemde
<perch:content id="text" type="textarea" label="Text" markdown editor="simplemde" imagewidth="640" imageheight="480">
to
<perch:content id="text" type="textarea" label="Text" textile editor="markitup" imagewidth="640" imageheight="480">
Thanks.
<perch:content type=“textarea” id=“desc” label=“Description” editor=“textile”>
Should work.
textile
isn't an editor, it's a formatting language. The editor by default issimplemde
which doesn't support Textile. So the change would be:to
Thanks.