vote up 0 vote down star

I'm wondering how you clean the special characters that MS Word as, such as m- and n-dashes and curly quotes?

I often find myself copying content from clients from Word and pasting into a static HTML page, but the content ends up with weird characters because the special characters are not converted to their correct ACSII codes and therefore show up as garbled text. (For these basic websites, I'm using Dreamweaver.)

I have seen a lot of similar problems when clients copy content from Word into text only fields (mostly textareas). When I put this into a PDF (through PHP) or it shows up on the page it too has garbled text.

How do you deal with this? Is there a cleaning service or program you use?

flag

70% accept rate

4 Answers

vote up 1 vote down

Pay attention to specify an encoding everywhere and use UTF-8, then those "special" characters should survive just fine. But once they've gone through an encoding that can't represent them, the information which character it was originally is lost, so it can't be repaired (except for some specific though probably very common cases like switching between Cp1252 and ISO-8859-1).

link|flag
For the HTML pages especially, everything is UTF8, so that's not the problem. – Darryl Hein May 6 at 22:41
If the characters get garbled, NOT everything is UTF-8. Common culprits are a missing accept-charset attribute of forms, and certain web browsers that don't interpret it correctly. – Michael Borgwardt May 6 at 22:52
Well, if any browser doesn't interpret it right, then I'd say it doesn't work. Here are my doctype etc: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "w3.org/TR/xhtml1/… xmlns="w3.org/1999/xhtml"><head><meta/… http-equiv="Content-Type" content="text/html; charset=UTF-8" /> Is there something wrong there? – Darryl Hein May 6 at 22:59
XHTML itself is problematic, see dev-archive.net/articles/xhtml.html though I have not heard about problems speficially with encodings. As I wrote: do the forms have an accept-charset defined, and do you use a recent browser? What language/environment is used to process the form data? Does it use UTF-8 correctly? – Michael Borgwardt May 6 at 23:15
Ah, I see you're using PHP. Well, there's your problem, most likely. Read here: phpwact.org/php/i18n/charsets And especially note the section about contradicting encodings in the HTML headers and the page itself. – Michael Borgwardt May 6 at 23:20
show 3 more comments
vote up 1 vote down

You might try the Demoroniser.

link|flag
Dang, that is nice. If no one comes up with anything better, that might just work. – Darryl Hein May 6 at 23:07
vote up 0 vote down

If it's a Word file that's just text (i.e.: no graphics, tables, etc.), you might try Saving As HTML from within Word, copy/pasting the resulting HTML into your document in Dreamweaver, and then use Dreamweaver's "Clean Up Word HTML" function (under the Command menu).

As an alternative, you can try fix my HTML, though I've not personally tried it with Word text, so results may vary.

link|flag
I'm trying to find something that doesn't take 5 steps to get into Dreamweaver and it'd also be nice to have something that I can give to clients to clean their Word content as well. – Darryl Hein May 8 at 21:24
vote up 1 vote down

With regards to clients posting copy/pasted text from Word in textareas:

The most reliable way to ensure that the client sends you text in any particular encoding (thus hopefully doing any conversion from CP-1252 [or whatever Word uses] for you), is to add the accept-charset="..." attribute to all your <form>s. E.g.:

<form ... accept-charset="UTF-8">
   ...
</form>

Most browsers will obey that and make sure any "Word-specific" characters are converted to the appropriate character set before it gets to your website.

Once invalid text gets to your website, there's very little you can do to fix it reliably, so it's best to simply check all input for being valid in whatever character set you use, and discard any requests that have invalid text. This is necessary even with accept-charset, because undoubtedly there are some clients out there that will ignore it.

link|flag

Your Answer

Get an OpenID
or

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