diff --git a/CHANGELOG.adoc b/CHANGELOG.adoc index 056aaede..ebb2e8a7 100644 --- a/CHANGELOG.adoc +++ b/CHANGELOG.adoc @@ -16,6 +16,7 @@ For a detailed view of what has changed, refer to the {uri-repo}/commits/main[co Documentation:: * Add ID's for all parameters of process-asciidoc, auto-refresh and http mojo, to be able to generate direct urls (https://github.com/uniqueck[@uniqueck]) (#533) + * Clarify where to put the plugin section in `pom.xml` (#558) Bug Fixes:: diff --git a/docs/modules/plugin/pages/introduction.adoc b/docs/modules/plugin/pages/introduction.adoc index 9afc649f..ebab7559 100644 --- a/docs/modules/plugin/pages/introduction.adoc +++ b/docs/modules/plugin/pages/introduction.adoc @@ -27,29 +27,35 @@ Here is a simple example of an HTML conversion. [source,xml,subs="attributes+"] ---- - - org.asciidoctor - asciidoctor-maven-plugin - {release-version} - - - convert-to-html - generate-resources - - process-asciidoc - - - ${project.build.directory}/html - - coderay - ./images - left - font - - - - - + + ... + + ... + + org.asciidoctor + asciidoctor-maven-plugin + {release-version} + + + convert-to-html + generate-resources + + process-asciidoc + + + ${project.build.directory}/html + + coderay + ./images + left + font + + + + + + ... + ---- <.> Asciidoctor maven plugin's phase and goal must be set explicitly in an execution block. <.> Asciidoctor options can be set in the `` section.