File tree 1 file changed +10
-0
lines changed
1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change 52
52
(check (shtml->stm ' (a (@ (href " %60hello%20world%60" )) " `how are you?`" ))
53
53
=> ' (hlink " \x 00;how are you?\x 00;" " %60hello%20world%60" )))
54
54
55
+ (define (regtest-htmltm-formatting )
56
+ (check (shtml->stm ' (b " test" )) => ' (with " font-series" " bold" " test" ))
57
+ (check (shtml->stm ' (em " test" )) => ' (em " test" ))
58
+ (check (shtml->stm ' (i " test" )) => ' (with " font-shape" " italic" " test" ))
59
+ (check (shtml->stm ' (small " test" )) => ' (with " font-size" " 0.83" " test" ))
60
+ (check (shtml->stm ' (strong " test" )) => ' (strong " test" ))
61
+ (check (shtml->stm ' (" test" (sub " sub" ))) => ' (rsub " sub" ))
62
+ (check (shtml->stm ' (" test" (sup " sup" ))) => ' (rsup " sup" )))
63
+
55
64
(tm-define (htmltm-test)
56
65
(regtest-htmltm-headings)
57
66
(regtest-htmltm-grouping)
58
67
(regtest-htmltm-quote)
68
+ (regtest-htmltm-formatting)
59
69
(check-report))
You can’t perform that action at this time.
0 commit comments