-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow the version token to be a link #21
Comments
Right now the model is this:
In order to work, spotless-changelog needs to parse a changelog and modify it. So to handle your case, we need to:
Lines 286 to 295 in 3b773c3
One of the simple features we have already is that you can replace the I think it would reasonable to do something like this:
I would be happy to merge a PR along these lines. However, I insist that the PR author starts by writing the documentation first, and getting a round of feedback on that part. Adding this |
Thank you for your reply. Now I'm occupied with another project. When I get spare time I'm going to see what I can do. |
Hello,
In my project instead of using a simple
[1.0.0] - 2021-04-06
we use[1.0.0](#100---2021-04-06) - 2021-04-06
(to quickly focus on the paragraph version and to be more pretty).But because you only check for
"] - "
to end the parsing of the version then in my changelogs the changelogCheck is going to always throw the error below:spotless-changelog/spotless-changelog-lib/src/main/java/com/diffplug/spotless/changelog/Changelog.java
Lines 252 to 257 in 3b773c3
What do you think?
The text was updated successfully, but these errors were encountered: