Add stubs for some missing types

This commit is contained in:
Lassi Kortela 2021-09-04 12:52:58 +03:00
parent a1d604d1fc
commit 109f74070c
1 changed files with 15 additions and 0 deletions

View File

@ -63,6 +63,21 @@
`(span ,@(convert-many (contents-list))))
((equal? type "Para")
`(p ,@(convert-many (contents-list))))
((equal? type "Quoted") ; TODO: What's this?
`(blockquote
,@(convert-many '())))
((equal? type "SingleQuote") ; TODO: What's this?
`(blockquote
,@(convert-many '())))
((equal? type "DoubleQuote") ; TODO: What's this?
`(blockquote
,@(convert-many '())))
((equal? type "OrderedList") ; TODO: What's this?
`(blockquote
,@(convert-many '())))
((equal? type "Superscript") ; TODO: What's this?
`(blockquote
,@(convert-many '())))
((equal? type "SoftBreak")
"\n")
((equal? type "Strong")