minor LLM fuckup fixes
This commit is contained in:
parent
6212c3fd05
commit
4893b40cc9
1 changed files with 2 additions and 1 deletions
|
|
@ -9,7 +9,6 @@ data Element
|
|||
| Code Code
|
||||
| BlockQuote BlockQuote
|
||||
| List List
|
||||
| Table Table
|
||||
| HTML HTML
|
||||
| Paragraph Paragraph
|
||||
| HorizontalRule
|
||||
|
|
@ -33,6 +32,8 @@ data ListItem = LI
|
|||
children :: [List]
|
||||
}
|
||||
|
||||
data ListType = Ordered | Unordered
|
||||
|
||||
data List = L
|
||||
{ list_type :: ListType,
|
||||
items :: [ListItem]
|
||||
|
|
|
|||
Loading…
Reference in a new issue