diff options
author | Gregor Kleen <pngwjpgh@users.noreply.github.com> | 2017-01-23 16:11:37 +0100 |
---|---|---|
committer | Gregor Kleen <pngwjpgh@users.noreply.github.com> | 2017-01-23 16:11:37 +0100 |
commit | 99fc4947543c1916e9fec952526a688eb7753490 (patch) | |
tree | 9361649ae4639a00cff06ad654cb42e3e07bc637 /tp-bbcode/test/Thermoprint/Printout | |
parent | 59a7e3d173c23096fe3122505b1b759f26e3292a (diff) | |
parent | 64b6ead0d1e157701f8569743eda496bc71b8351 (diff) | |
download | thermoprint-99fc4947543c1916e9fec952526a688eb7753490.tar thermoprint-99fc4947543c1916e9fec952526a688eb7753490.tar.gz thermoprint-99fc4947543c1916e9fec952526a688eb7753490.tar.bz2 thermoprint-99fc4947543c1916e9fec952526a688eb7753490.tar.xz thermoprint-99fc4947543c1916e9fec952526a688eb7753490.zip |
Merge branch 'feat-markup'
Diffstat (limited to 'tp-bbcode/test/Thermoprint/Printout')
-rw-r--r-- | tp-bbcode/test/Thermoprint/Printout/BBCodeSpec.hs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tp-bbcode/test/Thermoprint/Printout/BBCodeSpec.hs b/tp-bbcode/test/Thermoprint/Printout/BBCodeSpec.hs index 7909360..2f70ddc 100644 --- a/tp-bbcode/test/Thermoprint/Printout/BBCodeSpec.hs +++ b/tp-bbcode/test/Thermoprint/Printout/BBCodeSpec.hs | |||
@@ -64,4 +64,6 @@ examples = [ ("Hello World!" | |||
64 | , Right [Line ("Par1"), Line ("Par2"), Line (JuxtaPos ["Par3", HSpace 1, "Word2"])]) | 64 | , Right [Line ("Par1"), Line ("Par2"), Line (JuxtaPos ["Par3", HSpace 1, "Word2"])]) |
65 | , ("Par1 [hspace=3/]\n\n[vspace=2/]Par2\n\nPar3 Word2" | 65 | , ("Par1 [hspace=3/]\n\n[vspace=2/]Par2\n\nPar3 Word2" |
66 | , Right [Line (JuxtaPos ["Par1", HSpace 4]), NewlSep [VSpace 2, Line ("Par2")], Line (JuxtaPos ["Par3", HSpace 1, "Word2"])]) | 66 | , Right [Line (JuxtaPos ["Par1", HSpace 4]), NewlSep [VSpace 2, Line ("Par2")], Line (JuxtaPos ["Par3", HSpace 1, "Word2"])]) |
67 | , ("[b]B [u]BM[/u][/b] [markup bold=1 underline=1]BM[/markup]" | ||
68 | , Right [Line (JuxtaPos [Markup [Bold] (JuxtaPos ["B",HSpace 1,Markup [Underline] "BM"]),HSpace 1,Markup [Bold,Underline] "BM"])]) | ||
67 | ] | 69 | ] |