File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change 30
30
" doc-parse multi-word line" )
31
31
(assert (deep= (doc-parse " foo bar baz qux\n\n foo bar baz qux" )
32
32
'@[((" foo" 3 ) (" bar" 3 ) (" baz" 3 ) (" qux" 3 )) ((" foo" 3 ) (" bar" 3 ) (" baz" 3 ) (" qux" 3 ))])
33
- " doc-parse multi-word line " )
33
+ " doc-parse multiple paragraphs " )
34
34
(assert (deep= (doc-parse " * foo" )
35
35
'@[@[:ul @{} @[((" foo" 3 ))]]])
36
36
" doc-parse simple ul" )
63
63
(assert (deep= (doc-format " * this is a test of wrapping" 30 0 )
64
64
@" \n * this is a test of \n wrapping\n " )
65
65
" doc-format wrap lists" )
66
+ (assert (deep= (doc-format " * foo\n * bar\n * baz\n * qux" nil 0 )
67
+ @" \n * foo\n * bar\n * baz\n * qux\n " )
68
+ " doc-format nested lists" )
66
69
(assert (deep= (doc-format " foo _bar_ **baz qux**" nil 0 false )
67
70
@" \n foo _bar_ **baz qux**\n " )
68
71
" doc-format facets" )
You can’t perform that action at this time.
0 commit comments