diff options
author | cinap_lenrek <cinap_lenrek@centraldogma> | 2011-09-20 00:38:28 +0200 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@centraldogma> | 2011-09-20 00:38:28 +0200 |
commit | a31e4f61a4c9afb9696a7ff4ff09e02b3281a2f3 (patch) | |
tree | b011661fc3c4e6f98d8ff53ce0b103a579853ff1 /sys/src/cmd/page.c | |
parent | e7df0daa66531eccb2d37f7b66e27d16c9ae4391 (diff) |
uhtml: add html to unicode converter, used by mothra and page/html2ms
Diffstat (limited to 'sys/src/cmd/page.c')
-rw-r--r-- | sys/src/cmd/page.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/src/cmd/page.c b/sys/src/cmd/page.c index eb2e761c1..12be5dc51 100644 --- a/sys/src/cmd/page.c +++ b/sys/src/cmd/page.c @@ -626,7 +626,7 @@ popenfile(Page *p) else if(cistrncmp(buf, "<?xml", 5) == 0 || cistrncmp(buf, "<!DOCTYPE", 9) == 0 || cistrncmp(buf, "<HTML", 5) == 0){ - p->data = "html2ms | troff -ms | lp -dstdout"; + p->data = "uhtml | html2ms | troff -ms | lp -dstdout"; p->open = popengs; } else if(memcmp(buf, "\xF7\x02\x01\x83\x92\xC0\x1C;", 8) == 0){ |