-
|
Hello, Searching this section with "word web site " returned no hit(s). For a non-techie friend who just retired from university as an economics professor and would still like to publish academic articles, I need to find a simple way to create a web site. A simple web server (Linux + Nginx) running on a thin client is all it's needed in terms of hardware. As for software, static web pages are plenty good, no need to bother with dynamic solutions like Wordpress et al. As for publishing articles, he's used to writing them in Word (including graphs, that are impossible/too hard to draw in HTML), and them export them to PDF. I'd be surprised if there was no solution that…
It looks like Pandoc can turn Word files into HTML and PDF. Is there a solution that could then (re)generate the web site every time an article is added/edited? Thank you. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 6 replies
-
|
Quarto has a nice setup for publishing web pages hosted on several existing platforms, and can generate static HTML too. It uses pandoc markdown as its engine, so you could add in a script to auto-convert from docx to md files into a git repo and then automate quarto for publishing... https://quarto.org |
Beta Was this translation helpful? Give feedback.

I suspect Word will be more flexible as it supports reading custom styles which ODT input does not. I took this small doc in both ODT and DOCX format -- it contains character style (emphasis style in the first occurence of "Text"), direct formatting (bold), a figure with caption, headings and a maths equation:
test.docx
test.odt
And got these outputs:
odt --
pandoc -s -t markdown -f odt test.odt