Simple Text
()
| 327 | |
| 328 | |
| 329 | def test(): |
| 330 | """Simple Text""" |
| 331 | ifs = urlopen('http://en.cppreference.com/w/cpp/container/vector') |
| 332 | print(html2groff(fixupHTML(ifs.read()), 'std::vector'), end=' ') |
| 333 | # with open('test.html') as ifs: |
| 334 | # data = fixupHTML(ifs.read()) |
| 335 | # print html2groff(data, 'std::vector'), |
| 336 | |
| 337 | |
| 338 | if __name__ == '__main__': |
no test coverage detected