diff options
| author | samoorai <hirotakatech@gmail.com> | 2023-12-16 04:45:47 +0100 |
|---|---|---|
| committer | Dan Allen <dan.j.allen@gmail.com> | 2023-12-15 20:46:43 -0700 |
| commit | 7d856042fdd278f87d4c480180440e519fa1e97c (patch) | |
| tree | 0907ece223bf2d1123d898becb7481b790f279c0 /docs/modules | |
| parent | 1e6357ec8006782c8f1c65abd76f797912065256 (diff) | |
update the pandoc command in the options from the deprecated "asciidoctor" to "asciidoc" (PR #4526)
Diffstat (limited to 'docs/modules')
| -rw-r--r-- | docs/modules/migrate/pages/ms-word.adoc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/modules/migrate/pages/ms-word.adoc b/docs/modules/migrate/pages/ms-word.adoc index ebba5808..611fd66a 100644 --- a/docs/modules/migrate/pages/ms-word.adoc +++ b/docs/modules/migrate/pages/ms-word.adoc @@ -22,7 +22,7 @@ To perform the conversion from MS Word docx to AsciiDoc, you need to perform the .pandoc (2.11.2 or newer) - $ pandoc input.docx -f docx -t asciidoctor --wrap=none --markdown-headings=atx \ + $ pandoc input.docx -f docx -t asciidoc --wrap=none --markdown-headings=atx \ --extract-media=extracted-media -o output.adoc .pandoc (2.11.2 or newer) and docker @@ -30,7 +30,7 @@ To perform the conversion from MS Word docx to AsciiDoc, you need to perform the If you use docker you can also use the latest version of pandoc with docker without installing it: $ docker run --rm --volume "$PWD:/data" --user `id -u`:`id -g` pandoc/core input.docx -f docx \ - -t asciidoctor --wrap=none --markdown-headings=atx --extract-media=extracted-media -o output.adoc + -t asciidoc --wrap=none --markdown-headings=atx --extract-media=extracted-media -o output.adoc Then, edit the output file to tidy it up. |
