diff options
author | stanley lieber <stanley.lieber@gmail.com> | 2011-10-02 19:59:49 -0500 |
---|---|---|
committer | stanley lieber <stanley.lieber@gmail.com> | 2011-10-02 19:59:49 -0500 |
commit | 45fb395c2b29a2a0828253b25494368a5c69995d (patch) | |
tree | a97157f8160013c209d1a302228965209a35bf0a /sys/src/cmd/mothra/rdhtml.c | |
parent | 252d48d33112d1ff0463e8eeaee4de6cba510fc5 (diff) |
mothra: render <p> tag with no ident, offset with blank lines
Diffstat (limited to 'sys/src/cmd/mothra/rdhtml.c')
-rw-r--r-- | sys/src/cmd/mothra/rdhtml.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/src/cmd/mothra/rdhtml.c b/sys/src/cmd/mothra/rdhtml.c index c9d6422d3..e3b915262 100644 --- a/sys/src/cmd/mothra/rdhtml.c +++ b/sys/src/cmd/mothra/rdhtml.c @@ -864,7 +864,8 @@ void plrdhtml(char *name, int fd, Www *dst){ } break; case Tag_p: - g.para=1; + pl_linespace(&g); + g.linebrk=1; g.spacc=0; break; case Tag_listing: |