Skip to content
Snippets Groups Projects
Commit 8039a360 authored by Fredrik Hübinette (Hubbe)'s avatar Fredrik Hübinette (Hubbe)
Browse files

bugfix (fixes nicer tables for odd textcolors)

Rev: tutorial/html.pike:1.35
parent a28b3b91
No related branches found
No related tags found
No related merge requests found
...@@ -618,6 +618,11 @@ SGML convert(SGML data) ...@@ -618,6 +618,11 @@ SGML convert(SGML data)
Sgml.Tag("font",(["color":"#ffffff"]),0, Sgml.Tag("font",(["color":"#ffffff"]),0,
cell->data), cell->data),
}); });
}else{
cell->data=({
Sgml.Tag("font",(["color":"#000000"]),0,
cell->data),
});
} }
// This adds some extra space, needed because // This adds some extra space, needed because
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment