View Single Post
Old 01-24-2010, 02:45 AM   #3
peterloron
Member
peterloron began at the beginning.
 
Posts: 14
Karma: 10
Join Date: Dec 2009
Location: WA
Device: iPhone Stanza
If you are running on a Mac, you can use this Applescript snippet to quickly convert from RTF to HTML:

Code:
on open filelist
	repeat with i in filelist
		do shell script "textutil -convert html -extension html '" & POSIX path of i & "'"
	end repeat
end open
peterloron is offline   Reply With Quote