diff options
author | cinap_lenrek <cinap_lenrek@felloff.net> | 2018-09-23 23:35:41 +0200 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2018-09-23 23:35:41 +0200 |
commit | ef17043327d999101009f85aae72f77399db15ac (patch) | |
tree | 5aba1b4e77df289696c982559f909f1e43b2308e /sys/src/libhtml | |
parent | 94333ce6a694c4c9b282c1db4e0360ab6ef047b9 (diff) |
libhtml: increase Nestmax to render some convoluted pages (thanks fernan)
example page with broken citation list numbering:
https://en.m.wikipedia.org/wiki/Commodore_64
Diffstat (limited to 'sys/src/libhtml')
-rw-r--r-- | sys/src/libhtml/build.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/src/libhtml/build.c b/sys/src/libhtml/build.c index 54bf61f65..b0484c261 100644 --- a/sys/src/libhtml/build.c +++ b/sys/src/libhtml/build.c @@ -7,7 +7,7 @@ // A stack for holding integer values enum { - Nestmax = 40 // max nesting level of lists, font styles, etc. + Nestmax = 256 // max nesting level of lists, font styles, etc. }; struct Stack { |