-
Notifications
You must be signed in to change notification settings - Fork 13.7k
Closed
Labels
C-cleanupCategory: PRs that clean code up or issues documenting cleanup.Category: PRs that clean code up or issues documenting cleanup.T-rustdocRelevant to the rustdoc team, which will review and decide on the PR/issue.Relevant to the rustdoc team, which will review and decide on the PR/issue.
Description
For example, the rustdoc-where
tests originally used regexes as a kludge to avoid trying to match HTML tags, but with htmldocck
they can now check against text nodes.
Something like:
// @matches foo/struct.Alpha.html '//pre' "Alpha.*where.*A:.*MyTrait"
can be greatly clarified like:
// @matches foo/struct.Alpha.html '//pre' "pub struct Alpha<A> where A: MyTrait"
Metadata
Metadata
Assignees
Labels
C-cleanupCategory: PRs that clean code up or issues documenting cleanup.Category: PRs that clean code up or issues documenting cleanup.T-rustdocRelevant to the rustdoc team, which will review and decide on the PR/issue.Relevant to the rustdoc team, which will review and decide on the PR/issue.