Contributors: conner_bw, greatislander, steelwagstaff
Tags: markdown, parsedown
Requires at least: 6.8
Tested up to: 6.9.1
Requires PHP: 8.3
Stable tag: 1.3.0
License: GPLv3
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Markdown editing for WordPress.
This plugin lets you use Markdown for individual posts on a case-by-case basis. Markdown can be activated using a toggle in the post editor submit box. When enabled, it replaces the WordPress post editor with CodeMirror in Markdown mode.
Works on posts using the Classic Editor. Gutenberg is currently not supported.
The test-sample.md file includes comprehensive examples of various Markdown and Parsedown Extra features for testing purposes. To test the Markdown functionality locally:
- Create or edit a page using the Classic Editor
- Enable Markdown using the toggle in the Publish box (sidebar)
- Paste the contents of
test-sample.mdinto the post editor - Click "Preview" to view the rendered output
- Confirm that all Markdown features are properly parsed (headers, lists, code blocks, tables, etc.)
Yes.
Yes. Add the following line to your theme's functions.php (or another suitable place):
add_filter( 'parsedownparty_autoenable', '__return_true' );
Not yet. It works on posts using the Classic Editor. The block editor is currently not supported.
This plugin follows Pressbooks coding standards and development happens on GitHub.
The philosophy behind this plugin is: Take a best of breed Markdown Parser, combine it with WordPress' built-in CodeMirror libraries, and let users write posts in Markdown. Things like two-pane WYSIWYG editors are out of scope for this particular plugin (the Preview button works fine.) The design goal is to modify WordPress Core as little as possible while providing decent Markdown support for content.
What about Gutenberg? Haven't started yet. Tiny MDE looks like a good place to get ideas.
- Compatibility with WordPress 6.8.3
- Updated composer dependencies
- Compatibility with WordPress 5.3 (and Classic Editor)
- Updated composer dependencies
- Compatibility with WordPress 5.1 (and Classic Editor)
- Fixed paragraphs following tables
- Fix cache glitch when previewing.
- When enabling Markdown on an existing post, convert HTML to Markdown.
- Cache parsed content using transients.
- Update Parsedown to version 1.7.1
- Add
parsedownparty_autoenablefilter to allow Markdown to be enabled by default.
- Initial release.
