HTML "tag" collection ?

  • Thread starter Thread starter John Fitzsimons
  • Start date Start date
J

John Fitzsimons

I don't even know if such a program exists BUT is there a
program/utility that can "collect" all the tags in a HTML
page(s). Or remove all non tag data ?

A quick way to prepare for changing a non CSS site to a
CSS site perhaps ?

Regards, John.
--
****************************************************
,-._|\ (A.C.F FAQ) http://clients.net2000.com.au/~johnf/faq.html
/ Oz \ John Fitzsimons - Melbourne, Australia.
\_,--.x/ http://www.vicnet.net.au/~johnf/welcome.htm
v http://clients.net2000.com.au/~johnf/
 
John Fitzsimons said:
I don't even know if such a program exists BUT is there a
program/utility that can "collect" all the tags in a HTML
page(s). Or remove all non tag data ?

Some trickery with regular expressions? Most decent text editors can
work with regex...
A quick way to prepare for changing a non CSS site to a
CSS site perhaps ?

That's something else, don't know any automated tools for that...

Regards,
wwwald
 
Some trickery with regular expressions? Most decent text editors can
work with regex...


That's something else, don't know any automated tools for that...

Regards,
wwwald

Command line:

http://tidy.sourceforge.net/



-clean, -c

replace FONT, NOBR and CENTER tags by CSS (clean: yes)


Couple of HTML editors with Tidy built in:

Html-kit

http://www.chami.com/html-kit/

Actions>tools>Html tidy>Upgrade to css

First Page 2006

http://www.evrsoft.com/

Tools> Tidy Html quick tools>Upgrade to stylesheets.



In addition, Html Kit has a wizzard type plug in that helps in the
process of switching from tables to pure css.

http://www.chami.com/html-kit/plugins/info/hkdivstarter/

hkDivStarter
Is making the transition from TABLE tags to DIV + CSS on your to-do list?
This plugin provides a graphical interface for building the basic layout
and generates the initial tags in real-time.

Good luck.



*** ***
 
Some trickery with regular expressions? Most decent text editors can
work with regex...

< snip >

Thanks, but I would need to do a search for every tag that exists. A
far from easy task.

Regards, John.
 
Couple of HTML editors with Tidy built in:


Actions>tools>Html tidy>Upgrade to css

In addition, Html Kit has a wizzard type plug in that helps in the
process of switching from tables to pure css.

< snip >

Wow ! Thanks for the recommendations AND the steps. :-)

Regards, John.
 
Back
Top