Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Gradle: patchPluginXml: fix formatting of <change-notes>
Commit 1082881 (Gradle: patchPluginXml: link to the full changelog, 2023-07-05) added section "See also" to <change-notes> generated by Gradle task `patchPluginXml`. I failed to test the change. The asterisk in front of the `[Full changelog](...)` causes the list item to be nested one level too deep. Function `plus()` keeps only the `extraItems` passed into the constructor of `Changelog.Item` (and `summary`, but only if left-hand side `Item` doesn't have one already). So we technically could keep the String "* ", as its value was just ignored by `plus()`.[1] Remove unnecessary asterisks of Markdown list syntax that I've added without understanding how the classes Changelog and Changelog.Item work. While we're here, mention introduction of the "See also" section with the link to the full changelog in `CHANGELOG.md`. [1] value of property `itemPrefix` in class Changelog.Item is completely unused as of Gradle Changelog Plugin 2.1.1, but that's a separate issue
- Loading branch information