-
Notifications
You must be signed in to change notification settings - Fork 4.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support Markdown syntax #1843
Comments
Support for text patterns is being worked on in #1674. I imagine that could be extended to support headings. |
Core's textpatterns already support headings, so I assume it will be part of #1674. -1000 on full Markdown support, that should be a plugin. It's far too niche, and a maintenance nightmare to make sense of the various Markdown parsing libraries. |
No WordPress Flavoured Markdown then 🤔 |
The basic markdown-like patterns are implemented. |
Maybe you can consider the Markdown editor plugin. |
@felixarntz I've just released markdown support for Gutenberg on EditorsKit( https://wordpress.org/plugins/block-options/ ). It's integrated directly on RichText editor so you don't have to use custom block. Here's the preview on how this feature works : Video here : https://twitter.com/phpbits/status/1135895882216329216 |
Issue Overview
At the moment, when writing a very simple post (regular text content only) in Gutenberg, the user is required to use the mouse for things like inserting headings, links, formatting text in bold/italic etc. While Gutenberg is optimized for supporting creation of complex layouts, it should be as easy and streamlined as possible to write a basic post with text content. Only having to use the keyboard would make that much quicker.
Possible Solution
If Gutenberg supported the Markdown specification, that would be possible. The current WordPress editor at least supports a subset of it, but I think Gutenberg should support much more of it. If users could simply write
## My Heading
and make that a heading block automatically, it would make the process of writing a post much quicker. Same applies of course for the other things, like formatting text or maybe even adding links.@schlessera highlighted recently that Dropbox Paper has that kind of support for Markdown, and when I tested it, I loved it. Please try it to get an idea of my suggestion.
The text was updated successfully, but these errors were encountered: