Hi,
I noticed that in fetch_dataset.py, the include_sup_sub setting is not enabled, which leads to incorrect parsing of the constraints.
For example, given the following code:
import html2text
h = html2text.HTML2Text()
h.ignore_links = True
h.ignore_images = True
h.ignore_emphasis = True
# h.include_sup_sub is False by default
h.handle("<code>0 <= grid[i][j] <= 10<sup>5</sup></code>")
The output will be:
`0 <= grid[i][j] <= 105`\n\n
Hi,
I noticed that in fetch_dataset.py, the
include_sup_subsetting is not enabled, which leads to incorrect parsing of the constraints.For example, given the following code:
The output will be: