How to remove/strip all formatting or styling information from HTML table code?
I need to remove all coloring, font sizing etc. Probably completely remove all style
and class
attributes.
Probably I would like to just remove some tags and attributes. By removing tag I mean leaving it's content, but removing beginning and ending tag name.
I did something like this years ago in VB6. Copied below is the code. As you can see, the code just steps through the HTML character-by-character and removes everything between (and including) the < and > tags. Hopefully you can do something similar in whatever tool you are using.