views:

49

answers:

1

We have a textbox where users will be entering reviews. They should be able to do simple formatting things like bold, italics, lists, headers, etc... Our problem is that the majority of our users will most likely create their reviews in MS Word then copy/paste the text to our form. As you know, this can (and mostly will) cause problems when displaying the data. What is the best way to provide the simple formatting functionality without having problems when they copy/paste from Word?

The best solution would be some type of filter that takes text from Word and strips out everything unneeded or illegal.

A: 

You could write an add-in that exposes a single button with the text "Copy for Review". Your add-in would do all the cleanup that you'd want.

Jonathan Yee