I'm writing a README.md
for one of my repositories on github.com
.
As part of this README.md
I'd like to include a quote of another README.md
(from another repository), which implies using advanced markdown inside the quote.
Eventually I'd like to see something like this:
- Item 1
- Use the following:
- First level of quoted list
- Second level of quoted list
Nested quote
- First level of quoted list
- Use the following:
- Item 2
For now I'm trying to achieve this with the following markdown:
* Item 1
* Use the following
> * First level of quoted list
> * Second level of quoted ***list***
> * > Nested *quote*
* Item 2
There are several online markdown editors out there that intend to simulate github
markdown behavior: ones that work much better than github
itself, others that are a bit more realistic, but in github
it looks like this:
- Item 1
- Use the following
> * First level of quoted list > * Second level of quoted list > * > Nested quote
- Use the following
- Item 2
So it appears that github
supports some simple markdown inside the block quote (like bold, italic etc.), but it won't support the advanced markdown (like lists, quotes etc.)
Is there any way to quote a complex markdown on github
?