-
Notifications
You must be signed in to change notification settings - Fork 335
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
Asciidoctor: Remaining change admonishments #573
Conversation
Adds support for `coming` and `deprecated` which function very similarly to `added`.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This actual change looks fine to me, however I did leave some comments about a couple of things I felt were worth clarifying first.
@@ -7,15 +7,23 @@ | |||
# | |||
# Turns | |||
# added[6.0.0-beta1] | |||
# changed[6.0.0-beta1] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The code and comments disagree, the code says coming
but the comments say changed
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I've pushed a fix!
[ | ||
[:added, 'added'], | ||
[:coming, 'changed'], | ||
[:deprecated, 'deleted'], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
One of these things is not like the others! I'm sure there is a reason BUT, to people (like me!) reading this, the word deprecated
absolutely does not mean the same thing as deleted
, in fact it very specifically implies "definitely totally 100% still present".
Is this dictated by the docbook side? I see from the tests that the revisionFlag will contain deleted
. If that is within our control it may be worth its own issue? I have no clear sense of how much inertia there is behind it either.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It is dictated by the docbook side, yeah. I'll file an issue for it! I think it is a thing that we can clean up now, but I'd like to break it into its own thing.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for reviewing @ddillinger! |
Adds support for `coming` and `deprecated` which function very similarly to `added`.
Adds support for
coming
anddeprecated
which function very similarlyto
added
.