Quote:
Originally Posted by kacir
I usually take the index.html (TOC) file and edit it so only the list of files that are referenced is retained- all in perfect order.
This can be done like this
load file in vim editor
remove all linebreaks :%s/\n//
insert linebreaks before all < characters :%s/</{here press ctrl+Q Enter}</g
insert linebreaks after all > characters :%s/>/>{here press ctrl+Q Enter}/g
remove all lines not containing <a href= tag :v/<a href/delete
remove all <a href="http:// tags themselves :%s/<a href="
remove all > tags :%s/">//
...........
|
Thanks a lot...
Wow, it is really like lot of work... Especailly for a people like me, I really have not been doing programing for many years, so these kinda too complex for me...