Convert baseline inline links to point of reference links #494
Labels
baseline-document
Issues relating to the text in the baseline documents themselves
enhancement
This issue or pull request will add new or improve existing functionality
good first issue
This issue or pull request is well-defined and good for newcomers
Milestone
💡 Summary
Update baselines to use the point of reference link style rather than inline style for all links. The point of reference style allows inline link references to be small and not upset reading of source and allows link URLs to be set into their own separate sections. The new style would enhance readability and maintenance of the baseline markdowns.
Motivation and context
You can separately define and reference links in Markdown documents using the "point of reference style" rather than the "inline link" style we've used to date. This means when you are embedding links in a paragraph, you don't have to ruin the flow or line width to make the URL work.
Implementation notes
You can just insert the reference tag (e.g., [link name][]) and then anywhere else in the same document, define the reference via
[link name]: <URL>
.For example, instead of
you could just have the following:
And both will render the same way with "dog" being a link to the referenced URL. You can include the definition at the start of the doc, end of the doc, after the relevant paragraph... wherever. I recommend defining link references at the end of paragraphs or sections so the definition is still within easy reach and maintainers remember to update and review the links themselves.
Acceptance criteria
The text was updated successfully, but these errors were encountered: