diff options
author | Adam Chlipala <adam@chlipala.net> | 2012-05-13 14:27:29 -0400 |
---|---|---|
committer | Adam Chlipala <adam@chlipala.net> | 2012-05-13 14:27:29 -0400 |
commit | 543c99d4062957e558a3497cb8a7b49dd025473f (patch) | |
tree | 4df2911728427b4f84558c03f672ac370427e815 /src/demo.sml | |
parent | 400190df6f4bb6500fa1f37e95edea3a19bf3fb3 (diff) |
Fix hyphenation for demos; parse CSS class 'table' as 'tabl'
Diffstat (limited to 'src/demo.sml')
-rw-r--r-- | src/demo.sml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/demo.sml b/src/demo.sml index 6897bfa2..747bbd2c 100644 --- a/src/demo.sml +++ b/src/demo.sml @@ -424,6 +424,10 @@ fun make' {prefix, dirname, guided} = | Settings.Prefix => TextIO.output (outf, "*"); TextIO.output (outf, " "); TextIO.output (outf, #to rule); + if #hyphenate rule then + TextIO.output (outf, " [-]") + else + (); TextIO.output (outf, "\n"))) (#rewrites combined); filters "url" (#filterUrl combined); filters "mime" (#filterMime combined); |