Hi! First of all, thanks for creating this project. :)
I've found a parsing bug related to triple quotes. This is how to reproduce:
If I create a file named test.py with the following contents:
def test():
"""this is a test
this line will break parsing because triple quotes finish here, not the next line."""
pass
Then, run:
And open docs/test.html in the browser, I'll get:

If I change the file to:
def test():
"""this is a test
this line will break parsing because triple quotes finish here, not the next line.
"""
pass
Then the output will be:

Hi! First of all, thanks for creating this project. :)
I've found a parsing bug related to triple quotes. This is how to reproduce:
If I create a file named
test.pywith the following contents:Then, run:
pycco test.pyAnd open
docs/test.htmlin the browser, I'll get:If I change the file to:
Then the output will be: