Hello @ask26,
Thank you for reaching me ?? Well I need to make a tiny feature like a constant to disable the cache. I’ll do my best to take a look this week-end.
Meanwhile, if you are in a hurry, you can prevent the HTML static cache files by editing the following file :
/wp-content/plugins/markup-markdown/includes/markup-markdown/core/parser.php
Around line 20 replace ‘cached_post_markdown2html‘ by ‘post_markdown2html‘ and you are good ?? Like this :
add_filter( 'post_markdown2html', array( $this, 'post_markdown2html' ) );
About the folder itself for now you can’t delete it because the folder is auto-generated as a few settings are saved staticly into it. But you can safely remove all the *.html files inside and keep the php files only.
Kind Regards