aboutsummaryrefslogtreecommitdiff
path: root/test/fb2/reader/emphasis.native
diff options
context:
space:
mode:
Diffstat (limited to 'test/fb2/reader/emphasis.native')
-rw-r--r--test/fb2/reader/emphasis.native65
1 files changed, 31 insertions, 34 deletions
diff --git a/test/fb2/reader/emphasis.native b/test/fb2/reader/emphasis.native
index 18fa49a8b..a3f4cdeb6 100644
--- a/test/fb2/reader/emphasis.native
+++ b/test/fb2/reader/emphasis.native
@@ -1,38 +1,35 @@
Pandoc
- ( Meta { unMeta = fromList [] } )
+ Meta { unMeta = fromList [] }
[ Div
- ( "", [ "section" ], [] )
- [ Para
- [ Str "Plain,"
- , Space
- , Strong
- [ Str "strong" ]
- , Str ","
- , Space
- , Emph
- [ Str "emphasis" ]
- , Str ","
- , Space
- , Strong
- [ Emph [ Str "strong", Space, Str "emphasis" ] ]
- , Str ","
- , Space
- , Emph
- [ Strong [ Str "emphasized", Space, Str "strong" ] ]
- , Str "."
+ ( "" , [ "section" ] , [] )
+ [ Para
+ [ Str "Plain,"
+ , Space
+ , Strong [ Str "strong" ]
+ , Str ","
+ , Space
+ , Emph [ Str "emphasis" ]
+ , Str ","
+ , Space
+ , Strong [ Emph [ Str "strong" , Space , Str "emphasis" ] ]
+ , Str ","
+ , Space
+ , Emph
+ [ Strong [ Str "emphasized" , Space , Str "strong" ] ]
+ , Str "."
+ ]
+ , Para
+ [ Str "Strikethrough:"
+ , Space
+ , Strikeout [ Str "deleted" ]
+ ]
+ , Para
+ [ Subscript [ Str "Subscript" ]
+ , Space
+ , Str "and"
+ , Space
+ , Superscript [ Str "superscript" ]
+ ]
+ , Para [ Str "Some" , Space , Code ( "" , [] , [] ) "code" ]
]
- , Para
- [ Str "Strikethrough:", Space, Strikeout [ Str "deleted" ] ]
- , Para
- [ Subscript
- [ Str "Subscript" ]
- , Space
- , Str "and"
- , Space
- , Superscript
- [ Str "superscript" ]
- ]
- , Para
- [ Str "Some", Space, Code ( "", [], [] ) "code" ]
- ]
]