summaryrefslogtreecommitdiff
path: root/docs/modules/migrate/examples
diff options
context:
space:
mode:
authorioannisstavrakakis <87022642+ioannisstavrakakis@users.noreply.github.com>2023-04-02 09:43:03 +0300
committerDan Allen <dan.j.allen@gmail.com>2023-04-02 00:46:22 -0600
commit8f5b43db07cd5a1389989988d696e0eb914853a0 (patch)
tree538b8686bdc49ead3141bb6a55ef962da28edece /docs/modules/migrate/examples
parent682424c9238e519e8043504e17db8744719ab8bf (diff)
update pandoc command in convert.groovy (PR #4408)
Diffstat (limited to 'docs/modules/migrate/examples')
-rw-r--r--docs/modules/migrate/examples/convert.groovy2
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()