Closed atn832 closed 5 years ago
This snippet:
final html = """ <!DOCTYPE html> <head> <script> console.log("test"); </script> </head> <body> Hello </body> """; final md = html2md.convert(html); print(md);
prints out a string that contains 'console.log("test");'. I would have expected only Hello to be included.
Version 0.3.0 is out, you can exclude elements with the new ignore parameter.
ignore
Thank you!
This snippet:
prints out a string that contains 'console.log("test");'. I would have expected only Hello to be included.