File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed
Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change 5252 (check (shtml->stm ' (a (@ (href " %60hello%20world%60" )) " `how are you?`" ))
5353 => ' (hlink " \x 00;how are you?\x 00;" " %60hello%20world%60" )))
5454
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+
5564(tm-define (htmltm-test)
5665 (regtest-htmltm-headings)
5766 (regtest-htmltm-grouping)
5867 (regtest-htmltm-quote)
68+ (regtest-htmltm-formatting)
5969 (check-report))
You can’t perform that action at this time.
0 commit comments