redhat-documentation / asciidoc-markup-conventions

How to use AsciiDoc mark-up to properly style elements in Red Hat documentation
https://access.redhat.com/documentation/
17 stars 16 forks source link

Slight tweak to anchor name format #4

Closed sterobin closed 3 years ago

sterobin commented 6 years ago

@rkratky, I see that we are in sync on the anchor name format per my latest email to you Nov 6, 2017. The format you suggest is right on. However, per our previous agreement in the Mod Doc Ref Guide (which needs to be updated per the full anchor format as well), it should be an underscore preceding the {parameter}, not a dash. You, @tradej, and I had a long discussion on this and agreed that the underscore would be a nice delimiter between anchor IDs and parameter names when mentioned in full in xrefs.

So you've said this: [id='section-header-{parameter}'] But should be this: [id='section-header_{parameter}'] to be consistent with Mod Doc Ref Guide decisions and previous discussions.

This will make an xref like this: For details, see xref:section-header_parameter-name.

Also, I would recommend mentioning the use of the {context} attribute specifically, even as a note, and linking to the discussion of Reusing Modules in the Mod Doc Ref Guide.

I'm happy to submit the PR myself, if you'd like.

Speaking of PRs, do I have the okay then to go ahead and make a PR with the change to the Mod Doc Ref Guide to use this full anchor format instead of the previously decided [#anchor-name] format? Please let me know here or via the email I sent you.

Thanks, Stetson

rkratky commented 6 years ago

@sterobin, ah, yes, it's an oversight on my part -- not intentional.

I'm happy to submit the PR myself, if you'd like.

Please, do.

Speaking of PRs, do I have the okay then to go ahead and make a PR with the change to the Mod Doc Ref Guide to use this full anchor format instead of the previously decided [#anchor-name] format?

Of course. Please, go right ahead.

bergerhoffer commented 6 years ago

@sterobin @rkratky I wanted to ask a question about the delimiter on anchors. Betty was going over the modular docs guide with us last week and we noticed the anchors used a combo of both dashes and underscores and thought it was odd.

We've always used underscores on EAP to delimit our anchors, because if you don't explicitly specify an anchor, the build will automatically use underscores. So we figured it was best to be consistent and use underscores always. I can even see a few instances in the modular docs guide where the section headings use just underscores.

So is what you're suggesting here (and in the modular docs guide) is still to use a combo of dashes and underscores? If so, that seems awful confusing and wouldn't look very nice in the user-facing URLs. We don't use attributes in our anchors now, but I'm not sure I see the benefit of why you would want a different delimiter.

rkratky commented 6 years ago

@bergerhoffer, there's a good reason (and a long debate) behind every part of that, but I'll let @sterobin reply :-)

However, @sterobin, the fact that adoctor uses underscores when automatically generating anchors escaped us. I'm not saying we should reopen the discussion, but it weakens the argument for dashes.

sterobin commented 6 years ago

@bergerhoffer, in summary of the decision:

With this scenario, consider these dash/underscore options as they appear in cross-refs (the same would also appear in URLs): A) For details, see xref: creating-decision-tables-asset-types[ ]. B) For details, see xref: creating_decision_tables_asset_types[ ]. C) For details, see xref: creating-decision-tables_asset-types[ ].

With option C, the writer can more easily tell that the module "creating decision tables" is being referenced to its use in the context of "asset types". With options A and B, it takes more deliberate thinking and familiarity.

So it's simply an aid in cross-refs and in URLs, which in some cases could also benefit users. But mostly for us internally.

If we don't like this deviation and want all or nothing, then I vote for dashes all around, unless someone can give a better reason beyond the default asciidoc behavior (which shouldn't matter if all files have anchors set, as they should).

bergerhoffer commented 6 years ago

@sterobin Thanks for the explanation.

However, if you're using an underscore to separate the "asset-types" part of the anchor, don't you run into the same exact issue as you've described above with the underscores? Plus, I think we should be more concerned about the end user experience with the anchor as opposed to us as writers.

I still prefer underscores, though I can't say that I've had personal experience with the issues that you're describing. But if nothing else, I would prefer just being consistent in the use of dash or underscore.

rkratky commented 6 years ago

@bergerhoffer, but it is 'being consistent' -- dashes are used between words, and underscores are used to delimit the boundary between the heading part and the attribute.

I agree with you regarding preference for underscores, but whichever we decide to use, it's a good idea to use the other for clearly separating the heading from the parameter.

bergerhoffer commented 6 years ago

@rkratky But why does that separation have to be visible in the end product? I feel like it shouldn't matter in the end product whether something was compiled in a modular fashion or not.

rkratky commented 6 years ago

@bergerhoffer, well, the fact that it's visible in the compiled doc is a side product, but a harmless one. In my opinion, it is greatly outweighed by the help it provides writers. The final anchor (i.e. with the attribute translated) is often used even in the source code when you want to link to a specific section. Then it becomes handy.

rkratky commented 6 years ago

@bergerhoffer, the original (endless) discussion was at https://github.com/redhat-documentation/modular-docs/pull/19

bergerhoffer commented 6 years ago

@rkratky @sterobin I'm fine with keeping the guidance in this doc in sync with the guidance from the modular docs on anchors at the moment. Though I still think it should be revisited there. Again, the argument against underscores doesn't work if you're still using them this way. Might be worth getting larger input on the subject.

rkratky commented 6 years ago

And then there's the fact that our own tooling defaults to underscores, too (but it makes a judicious use of dashes). See, e.g., https://access.redhat.com/documentation/en-us/red_hat_container_development_kit/3.2/html-single/release_notes_and_known_issues/

bergerhoffer commented 3 years ago

Closing this as the decision on delimeters is up to mod docs, and we have updated to reflect.