Hi everyone,
I have valid markdown text (see blow) committed to my bitbucket and stored as `test.md` file. But when viewing this file from bitbucket.org, its not rendering correctly
The issue mainly happens with bullet points and block quotes
This is the text in the `test.md`
```
# Hello World
Bullet points:
- pt1
> - blockquote1
> - blockquote2
- pt2
> - blockquote3
```
As you can see, using any normal markdown editor, the rendering works fine (e.g. https://dillinger.io/)
Hi @Amit Barik
This should work fine :-)
'''
# Hello World
Bullet points:
* pt1
> blockquote1
> blockquote2
* pt2
> blockquote3
'''
Thanks,
Pramodh
FYI, the rendering
Thanks,
Pramodh
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks, but it works only with newlines in between every bullet points and block quote.
It still doesn't work without any newlines. (And I don't think that's a standard in markdown as other renderers online work just fine without newlines)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Amit Barik
The closest I could come to without newlines
'''
# Hello World
Bullet points:
* pt1
* > blockquote1
* > blockquote2
* pt2
* > blockquote3
'''
Thanks,
Pramodh
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks @Pramodh M ,
I think i found the bug. bitbucket markdown renderer doesn't work with 4-space indentation for child bullets. can this be fixed (since other renderers like github n online ones work)?
```
# Hello World
- pt1
- subpt1 (4 space) - works
- pt2
> - bq0 (4 space) - doesn't work
- pt3
> - bq1 (3 space) - works
> - bq2 (2 space) - works
```
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.