up vote 28 down vote favorite
15
share [g+] share [fb]

Please provide the single best option you are aware of.

link|improve this question

feedback

protected by Community Sep 29 '11 at 15:34

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

17 Answers

up vote 10 down vote accepted

HTML Tidy does a very good job on Word 2000 HTML, but I'm not sure how well it works on newer Word output.

link|improve this answer
feedback

Word 2007 has a "publish > blog" menu item on the Office menu (top left corner).

Using this feature seems to do an incredibly good job of cleaning the HTML, far better than any of the other HTML exporters built into Word (like "save as HTML Filtered").

I have actually set up a bogus free blog somewhere just to use this HTML-cleaning capability. Most long articles on Joel on Software originated in Word 2007 and was published to a fake blog just to clean up the HTML.

Edit: as pointed in comments, be sure that you enter a title for the fake post. If you don't, Word will show a generic error "Can't publish your post"

link|improve this answer
This worked pretty well, but in my case it formatted the HTML slightly different from the Word doc, and since it was coming from other people, I didn't want to actually alter the formatting. – jeremcc Sep 16 '08 at 17:08
1  
this worked great for me. i created a livespaces account. be careful not to accidentally select the link at the top of the blog that links you back to livespaces. also when creating the blog entry you need to enter a title otherwise it will give you a useless error telling you it it cant be posted – Simon_Weaver Jan 21 '09 at 3:20
in Visual Studio look for tag like <div id="msgcns!128FB3A5A1708E5A!123" class="bvMsg"> and click between the '<' and the 'd' in 'div'. at the bottom where you have a tree of elements click on the last div and under the popup menu click 'select tag contents'. you can then cute and paste this HTML – Simon_Weaver Jan 21 '09 at 3:22
feedback

In my opinion? Don't use it.

But in the real world, I've found that FCKEditor does a decent job of cleaning up Words fantastically hideous HTML.

link|improve this answer
I'm impressed. To use it, click "Paste from Word" button, which opens a dialog. Paste the contents of your Word document there. – OutputLogic Nov 10 '10 at 0:21
this seemed to be the best option for me. just use the demo on the FCKEditor site. – shedd Oct 19 '11 at 10:00
feedback

C# solution from Jeff Atwood.

link|improve this answer
feedback

Rather than cleaning up Word's HTML you could generate HTML directly from the Word document using Abiword. (wv is now deprecated in favour of Abiword; it's basically been absorbed.)

An example:

    AbiWord --to=html file.doc --exp-props="html4: yes"

See more in the documentation.

link|improve this answer
feedback

Try Wordoff: http://wordoff.org/ online

link|improve this answer
This one works great. Strips out the spurious attributes too. – Sherri Mar 30 '10 at 19:37
This one doesn't work for word 2007. It strips out any styling :P – the_drow Apr 3 '11 at 11:10
feedback

try this tool is based on tidy cleanuphtml

link|improve this answer
imho cleanup produces the cleanest html ouput. It even removes all these <o:p> tags – jao Mar 11 '11 at 14:48
feedback

Dreamweaver has a "clean up word HTML" option. Granted, I know it isn't perfect, but it also the only thing I have worked with.

link|improve this answer
I actually decided to go ahead and use this option, since Dreamweaver also allows you to easily edit things as needed. However, I did say free, so I can't really accept this one, sorry. – jeremcc Sep 16 '08 at 17:10
feedback

I found this tool: http://opilsoft.com/doctohtml.html, Opilion Software DocToHtml, it does a very good job. It produces the smallest HTML among all utilities that I tried.

link|improve this answer
feedback

Not exclusive to Word documents, but it is free (and open source). You might try Tidy: http://www.w3.org/People/Raggett/tidy/

link|improve this answer
feedback

There is a tool I wrote awhile back, it's a web application for converting Word DOC files to HTML. You just upload the .doc file and you get this interactive view of the conversion with a bunch of different options to tweak it. It's up here if you want to give it a try:

http://www.manglebracket.com/

link|improve this answer
Looks cool. I'll try it sometime. – jeremcc Dec 4 '09 at 17:15
MangleBracket was offline for awhile. It's back up now. – darkporter Jul 12 '10 at 3:33
Well, the tool messed up my moderately complex documents with images, tables, and bullets. – OutputLogic Nov 10 '10 at 0:02
feedback

Some online solutions:

Word HTML Cleaner:

A free tool that removes the excessive tags and clutter from Microsoft Word generated HTML documents, leaving basic formatting intact. File sizes are greatly reduced, and the returned HTML is easier to read, revise and employ.

Word2cleanhtml:

This site cleans up the HTML for any pasted document. It applies a number of filters to fix various things that Microsoft Office puts in its HTML, and gives you a nicely formatted result that you can paste directly into a web page or content editing system.

Textism: Word HTML Cleaner:

A tool to strip Microsoft’s proprietary tags and other superfluous noise from Word-generated HTML documents, leaving all the basic goodness intact. The service is free of charge for documents up to 20Kb in size. For larger files, subscriptions are available, proceeds from which go to keep your host’s dogs in biscuits and squeaky toys.

link|improve this answer
feedback

There is a solution for this on Coding Horror: Cleaning Word's Nasty HTML.

link|improve this answer
feedback

Maybe you should try HTML Purifer

Zapadoo Word Cleaner also perfectly worked for me

link|improve this answer
feedback

Note that most of the stuff that still remains with "Web Page, filtered" is to ensure that WYSIWYG. Stuff like MsoNormal in particular. Yea I agree it is divitis.

link|improve this answer
feedback

How about Bersoft Word HTML CleanUp?

link|improve this answer
feedback

I have only used vim and it worked just fine.

/Allan

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.