Hi @fabzzz
Yes it should be possible, but it’s gonna take me some time.
For now the fallback is for you to setup your custom field as classic pure text input – or textarea (not WYSIWYG) – then write your content as markdown, and finally use the way to ouput HTML as described in the faq :
In your child’s theme template by adding something like this:
echo mmd()->markdown2html( get_field( 'custom_field_name
') );
The custom field saved with markdown content should be parsed and rendered correctly as html code.
I’m gonna look into how to load the editor within ACF but can’t promise anything as I’m not familiar with the plugin API, plus I’m in the middle of refactoring the code right now^^ I need this feature for my personal blog as well, definitively required, will keep you posted.
Would be great if you can manage to do it manually for now m(__)m
Regards,
Pierre-Henri