How to disable marks for blocks -> quote

Hey … I’m traing to disable marks for blocks → quote (see screenshot)

… but the way I tried it is not how it’s done:

         kritiken:
            type: blocks
            marks: false
            fieldsets:
              - quote

…any suggestions?

I actually figured it out … I had to overwrite the blueprint as described here:

https://getkirby.com/docs/reference/panel/blocks/quote#default-files__blueprint

If anyone else ever needs to do it … this did the trick:

name: field.blocks.quote.name
icon: quote
wysiwyg: true
preview: quote
fields:
  text:
    label: field.blocks.quote.text.label
    placeholder: field.blocks.quote.text.placeholder
    type: writer
    inline: true
    icon: quote
    marks: false
  citation:
    label: field.blocks.quote.citation.label
    placeholder: field.blocks.quote.citation.placeholder
    type: writer
    inline: true
    icon: user
    marks: false