-
Notifications
You must be signed in to change notification settings - Fork 274
Closed
Labels
Description
Things that look like lists, such as numbers starting at points other than 1 and lone asterisks on a line, should be able to interrupt tables even though they can't interrupt paragraphs. This, for example:
moo | moo
----|----
moo | moo
13. OkayIt looks like this in GitHub:
moo moo moo moo
- Okay
Details
Events from pulldown-cmark:
"|-\n|-\n*\n" -> [
Start(Table([None]))
Start(TableHead)
Start(TableCell)
Text(Borrowed("-"))
End(TableCell)
End(TableHead)
Start(TableRow)
Start(TableCell)
Text(Borrowed("*"))
End(TableCell)
End(TableRow)
End(Table)
]Events from pandoc:
"|-\n|-\n*\n" -> [
Start(Table([None]))
Start(TableHead)
Start(TableCell)
Text(Boxed("-"))
End(TableCell)
End(TableHead)
End(Table)
Start(List(None))
Start(Item)
End(Item)
End(List(false))
]Reactions are currently unavailable