summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rw-r--r--doc/faqs.md9
1 files changed, 9 insertions, 0 deletions
diff --git a/doc/faqs.md b/doc/faqs.md
index dc78d10ae..4ea8dea10 100644
--- a/doc/faqs.md
+++ b/doc/faqs.md
@@ -217,4 +217,13 @@ function Table (tbl)
end
```
+### How can I use pandoc to read Word files in the old .DOC format?
+
+Install `antiword` and use it to convert the doc to DocBook,
+which can be read by pandoc.
+
+```
+antiword -x db input.doc | pandoc -f docbook
+```
+
:::