diff options
Diffstat (limited to 'test/rtf/image.native')
-rw-r--r-- | test/rtf/image.native | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/test/rtf/image.native b/test/rtf/image.native index 551a0f95c..1efe9d4aa 100644 --- a/test/rtf/image.native +++ b/test/rtf/image.native @@ -1,9 +1,12 @@ Pandoc - ( Meta { unMeta = fromList [] } ) + Meta { unMeta = fromList [] } [ Para - [ Image - ( "", [], [ ( "width", "2.0in" ), ( "height", "2.0in" ) ] ) - [ Str "image" ] - ( "f9d88c3dbe18f6a7f5670e994a947d51216cdf0e.jpg", "" ) - ] + [ Image + ( "" + , [] + , [ ( "width" , "2.0in" ) , ( "height" , "2.0in" ) ] + ) + [ Str "image" ] + ( "f9d88c3dbe18f6a7f5670e994a947d51216cdf0e.jpg" , "" ) + ] ] |