Skip to content

Commit

Permalink
[dom] Fix broken links in docs.
Browse files Browse the repository at this point in the history
  • Loading branch information
anp committed Nov 1, 2020
1 parent 044cee5 commit 74fb3e7
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions dom/src/elements/metadata.rs
Original file line number Diff line number Diff line change
Expand Up @@ -190,20 +190,20 @@ html_element! {

html_element! {
/// The [HTML `<meta>` element][mdn] represents [metadata] that cannot be represented by other
/// HTML meta-related elements, like [`<base>`][base], [`<link>`][link], [`<script>`][script],
/// [`<style>`][style] or [`<title>`][title].
/// HTML meta-related elements, like [`<base>`], [`<link>`], [`<script>`], [`<style>`] or
/// [`<title>`].
///
/// Note: the attribute `name` has a specific meaning for the `<meta>` element, and the
/// `itemprop` attribute must not be set on the same `<meta>` element that has any existing
/// name, `http-equiv` or `charset` attributes.
///
/// [mdn]: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/meta
/// [metadata]: https://developer.mozilla.org/en-US/docs/Glossary/Metadata
/// [base]: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/base
/// [link]: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/link
/// [script]: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/script
/// [style]: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/style
/// [title]: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/title
/// [`<base>`]: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/base
/// [`<link>`]: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/link
/// [`<script>`]: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/script
/// [`<style>`]: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/style
/// [`<title>`]: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/title
<meta>

categories {
Expand Down

0 comments on commit 74fb3e7

Please sign in to comment.