code block inside ListItem in BulletedList
cooler333 opened this issue · 4 comments
cooler333 commented
CodeBlock
// empty at all
Paragraph
some text
mdiep commented
If this is meant to be a bug report, I don't understand it.
cooler333 commented
How can i get code block inside ListItem? Not all document:
example:
- some question + code?
static dispatch_once_t onceToken = 0;
- other question?
output look like: ListItem, codeBlock, ListItem. But I want codeBlock inside list Item as child
mdiep commented
The code block needs an extra 4 spaces of indentation. This is standard markdown.
* A
```
code
```
* B
-
A
code
-
B
cooler333 commented
Thanks!!!