As of version 4.3. it should be possible to activate markdown for my posts and comments (.shtml).
I found a description on / , but the settings mentioned are not visible in settings -> writing
and settings -> discussion
.
Administrator
Version 4.3
As of version 4.3. it should be possible to activate markdown for my posts and comments (http://news.softpedia/news/say-hello-to-wordpress-4-3-489688.shtml).
I found a description on https://en.support.wordpress/markdown/ , but the settings mentioned are not visible in settings -> writing
and settings -> discussion
.
Administrator
Version 4.3
WordPress 4.3 have no markdown implementation, it is only a short list of shortcuts. The shortcuts active on default. It give no UI area to active/deactivated them. As small hint for updates posts. I seen often, that works only on new posts, no old drafts. But I haven't debug this.
WordPress 4.3 came with a new feature called formatting shortcuts. It allows users to quickly add common text formatting without removing their hands from the keyboard and without writing any HTML.
The only way to deactivate is a small piece of code, like in a simple custom plugin.
add_filter( 'tiny_mce_before_init', 'fb_disable_mce_wptextpattern' );
function fb_disable_mce_wptextpattern( $opt ) {
if ( isset( $opt['plugins'] ) && $opt['plugins'] ) {
$opt['plugins'] = explode( ',', $opt['plugins'] );
$opt['plugins'] = array_diff( $opt['plugins'] , array( 'wptextpattern' ) );
$opt['plugins'] = implode( ',', $opt['plugins'] );
}
return $opt;
}
Maybe you can try Markdown Editor plugin. It supports WordPress 4.0 - 5.3
Source code: https://github/terrylinooo/githuber-md