How can I insert newlines in an html file before each table related tag using sed?
|
|
matches opening & closing tags:
opening tags only:
closing tags only:
|
||
|
|
|
|
sed -e "s/<\\(table\\|td\\|tr\\)/\\ <\\1/gi" Add other element names you are interested in. Not 100% perfect either: it does not cater for all of HTML weirdness, but then sed will never be enough. |
||
|
|
|
This should be a basic solution
Not 100% perfect as it will ignore col, colgroup and catch the telytype tag but chances are you arn't using either those. |
|||
|
|
