Adding wysiwyg to text block

I have successfully added a wysiwyg to my custom block I created. I am not sure why this blueprint won’t work for the normal text block when trying to add the wysiwyg?

name: field.blocks.text.name
icon: text
wysiwyg: true
preview: text
fields:
  text:
    type: textarea
    nodes: false
    placeholder: field.blocks.text.placeholder

A textarea field is a markdown field and markdown isn’t parsed in the Panel. BTW, a textarea field doesn’t have a nodes property.

1 Like