forked from jgm/pandoc
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Textile Reader: Add command test for ordered list start attributes (j…
- Loading branch information
Showing
1 changed file
with
59 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
``` | ||
$ stack exec -- pandoc -f textile -t native | ||
This list starts: | ||
# one | ||
# two | ||
This list should continue at 3: | ||
#3 three | ||
# four | ||
This list should restart at 1: | ||
# one again | ||
# two again | ||
[ Para | ||
[ Str "This" , Space , Str "list" , Space , Str "starts:" ] | ||
, OrderedList | ||
( 1 , DefaultStyle , DefaultDelim ) | ||
[ [ Plain [ Str "one" ] ] , [ Plain [ Str "two" ] ] ] | ||
, Para | ||
[ Str "This" | ||
, Space | ||
, Str "list" | ||
, Space | ||
, Str "should" | ||
, Space | ||
, Str "continue" | ||
, Space | ||
, Str "at" | ||
, Space | ||
, Str "3:" | ||
] | ||
, OrderedList | ||
( 3 , DefaultStyle , DefaultDelim ) | ||
[ [ Plain [ Str "three" ] ] , [ Plain [ Str "four" ] ] ] | ||
, Para | ||
[ Str "This" | ||
, Space | ||
, Str "list" | ||
, Space | ||
, Str "should" | ||
, Space | ||
, Str "restart" | ||
, Space | ||
, Str "at" | ||
, Space | ||
, Str "1:" | ||
] | ||
, OrderedList | ||
( 1 , DefaultStyle , DefaultDelim ) | ||
[ [ Plain [ Str "one" , Space , Str "again" ] ] | ||
, [ Plain [ Str "two" , Space , Str "again" ] ] | ||
] | ||
] | ||
``` | ||
|