Parsed Markdown inside a single Block Plugin

Hi,

We use custom blocks and wonder if we can display the content of a textfield with parsed markdown?

/plugins/customText/index.php

<?php

Kirby::plugin('your-project/customText', []);

/plugins/customText/index.js

panel.plugin("your-project/customText", {
  blocks: {
    customText: `
      <div @click="open">
        <div class="name">Text</div>
        <div v-html="content.text" />
      </div>
    `
  }
});