-
Notifications
You must be signed in to change notification settings - Fork 956
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
Some characters break shortcodes #249
Comments
That's a known issue (dup of #165). There is an ongoing rewrite of the markdown/shortcode renderer by @reillysiemens and @RadicalZephyr that should fix that for 0.4 I might fix the faulty regex in the next minor version at least though |
OK, thank you so much for the info. Is there any estimation on when 0.4 will be released? |
None, I'm not the one working on it. |
So the shortcode parse will now parse the arguments as expected in the |
Great news! Thank you so much! |
Let's say I have a shortcode named quote:
If I call this short code like this:
I'll get this on the terminal when I try to run Gutenberg:
If I replace those commas, with something else or remove them it works. It seems it parses those commas as separators for other arguments or something like that.
Now, If I call my shortcode like this:
The generated html code is going to be like this:
Which obviously should not output the part before opening blockquote tag. It happens due to the underscore character in the url. If I change cwg_defects.html to cwgdefects.html for example, it works.
It has been tested with v0.3.2.
The text was updated successfully, but these errors were encountered: