Markdown extra in Panel Blueprint

I tried to insert a markdown text in a info type field but it seems that the markdown extra configuration is not considered.

fields:
      info:
        type: info
        text:
          en: The *Follow* button lets people subscribe to the public updates of others on Facebook.
          it: Il pulsante *Segui* consente alle persone di iscriversi agli aggiornamenti pubblici degli altri iscritti a Facebook.
      description:
        type: info
        text:
          en: >
            | Tables   |      Are      |  Cool |
            |----------|:-------------:|------:|
            | col 1 is |  ~~left-aligned~~ | $1600 |
            | col 2 is |    centered   |   $12 |
            | col 3 is | right-aligned |    $1 |

The markdown.extra configuration is enabled but the table is not converted.

Any ideas?

The entry type is interpreted as HTML, so you can input your table als HTML-<table>

Thanks. It works. I have not taken into account this feature.

Your welcome :slight_smile: to style it you can add a custom CSS to the panel. Add

c::set('panel.stylesheet', 'path/to/custompanel.css');

to the config.php

Thanks again for your fast help!

Is there a similar method to add custom javascript file to the panel?

After a brief check on the code of the panel I did not see a similar option.

Thanks

No, there isn’t, at least not yet. However, you can add javascript resources to a custom panel field.

I knew it.

Thanks for reply.