diff options
| author | ioannisstavrakakis <87022642+ioannisstavrakakis@users.noreply.github.com> | 2023-04-02 09:43:03 +0300 |
|---|---|---|
| committer | Dan Allen <dan.j.allen@gmail.com> | 2023-04-02 00:46:22 -0600 |
| commit | 8f5b43db07cd5a1389989988d696e0eb914853a0 (patch) | |
| tree | 538b8686bdc49ead3141bb6a55ef962da28edece /docs/modules/migrate/examples | |
| parent | 682424c9238e519e8043504e17db8744719ab8bf (diff) | |
update pandoc command in convert.groovy (PR #4408)
Diffstat (limited to 'docs/modules/migrate/examples')
| -rw-r--r-- | docs/modules/migrate/examples/convert.groovy | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/modules/migrate/examples/convert.groovy b/docs/modules/migrate/examples/convert.groovy index bffdb7d2..b04a6433 100644 --- a/docs/modules/migrate/examples/convert.groovy +++ b/docs/modules/migrate/examples/convert.groovy @@ -35,7 +35,7 @@ src.toFile().eachFileRecurse { f -> serializer.writeToFile( result, tmpHtml.absolutePath, "utf-8" ) - "pandoc -f html -t asciidoc -R -S --normalize -e $tmpHtml -o ${target}.adoc".execute().waitFor() + "pandoc -f html -t asciidoc $tmpHtml -o ${target}.adoc".execute().waitFor() tmpHtml.delete() }/* else { "cp html/$relative $target".execute() |
