hi guys, how to convert a formatted word document to html? is that possible?
if my word document is already formatted no need to edit when converted to html?
any ideas is apreciated..thanks.. :)
hi guys, how to convert a formatted word document to html? is that possible?
if my word document is already formatted no need to edit when converted to html?
any ideas is apreciated..thanks.. :)
A few practical options and clean-up tips to turn a formatted Word doc into usable HTML. , yes it is possible; was right that Word can export HTML, but that export often leaves Microsoft-specific inline styles and bulky markup that you will want to tidy.
Quick workflow options:
Fast export from Word: use the Save As web option (choose the "filtered" variant if available) to get HTML + image files. Expect inline styles, mso- classes, and extra attributes that need trimming.
Better, repeatable conversion: use Pandoc to produce cleaner, semantic HTML and extract images. Example:
pandoc -s -f docx -t html5 --extract-media=media --css=styles.css input.docx -o output.html
This gives a standalone HTML5 file, puts images in a media folder, and links an external stylesheet you can edit.
Practical clean-up and design tips:
class="Mso...", <!-- [if gte mso]--> blocks) with a text editor or find/replace; tools like HTML Tidy can help.Note: WYSIWYG editors can be handy for quick edits but often add extra markup. For a maintainable site, convert, then tidy and rework the structure with CSS.
Jump to Post— almostbob 866file saveas html
file saveas html
thanks bob.
is there some HTML software in which layout and formatting can be done by dragging the text? or the layout, position (like height) it needs to be define or code manually?
pls. help..newbie..
If you have word, the office program frontpage does that (EEWW)
but wysiwyg editors tend to produce very bloated code
or you could google for wysiwyg html editor for other types
thanks bob..:)
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.