Forum

Thread tagged as: Question, Configuration

Default Text Block Editor Choice

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?

1 points

  • 2 years ago

<perch:content type=“textarea” id=“desc” label=“Description” editor=“textile”>

Should work.

Drew McLellan

Drew McLellan 2638 points
Perch Support

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:

<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">

1 points

Thanks.