-
Notifications
You must be signed in to change notification settings - Fork 175
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
nested blockquotes #149
Comments
[ Quoting <notifications@github.com> in "[gomarkdown/markdown] nested blockq..." ]
```
> Blockquotes can also be nested...
>> ...by using additional greater-than signs right next to each other...
> > > ...or with spaces between arrows.
```
results in:
```
<blockquote>
<p>Blockquotes can also be nested…
> …by using additional greater-than signs right next to each other…
> > …or with spaces between arrows.</p>
</blockquote>
```
This needs to be:
~~~
Blockquotes can also be nested
> by using additional greater-than signs right next to each other
>
>> or with spaces between arrows.
~~~
|
This text, here on github:
results in this:
The example you gave above seems to not have worked at all on github? |
what has github's markdown parser to do with this issue? |
According to babelmark majority of parsers do nested blockqutoe: Would be good to have that too, although probably not trivial to implement. |
Looked a bit at the code, certainly not trivial. Current code does process the quoteblock again, but this start at the start of https://github.com/gomarkdown/markdown/blob/master/parser/block.go#L1071 is where we actually detect that second prefix. Fixing this is pretty involved. |
results in:
The text was updated successfully, but these errors were encountered: