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
|
| Code Code
|
||||||
| BlockQuote BlockQuote
|
| BlockQuote BlockQuote
|
||||||
| List List
|
| List List
|
||||||
| Table Table
|
|
||||||
| HTML HTML
|
| HTML HTML
|
||||||
| Paragraph Paragraph
|
| Paragraph Paragraph
|
||||||
| HorizontalRule
|
| HorizontalRule
|
||||||
|
|
@ -33,6 +32,8 @@ data ListItem = LI
|
||||||
children :: [List]
|
children :: [List]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
data ListType = Ordered | Unordered
|
||||||
|
|
||||||
data List = L
|
data List = L
|
||||||
{ list_type :: ListType,
|
{ list_type :: ListType,
|
||||||
items :: [ListItem]
|
items :: [ListItem]
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue