To replace tabs within your text with sed, you may have to revert to using one of the following methods:
sed 's/^V^I//g'
or
sed 's/^V<tab>//g'
remove blank lines
sed 's/^$/d'