-
Notifications
You must be signed in to change notification settings - Fork 73
Open
Labels
Description
Line 996 in 3241d49
| for (level = max_level; level > 0; level--) |
In the code:
for (level = max_level; level > 0; level--)The spec says:
L2. From the highest level found in the text to the lowest odd level on each line…
The code above seems to assume that the lowest odd level is always 1. I am not sure if it makes any difference in practice. I was reading through the code because I want to reimplement parts of this file in Lua, and this seemed to be not according to my understanding of the spec.