Lines Matching refs:link

25     *   [Links](#link)
116 link or image syntax, go right ahead.
132 escape ampersands within URLs. Thus, if you want to link to:
546 <h3 id="link">Links</h3>
550 In both styles, the link text is delimited by [square brackets].
552 To create an inline link, use a set of regular parentheses immediately
553 after the link text's closing square bracket. Inside the parentheses,
554 put the URL where you want the link to point, along with an *optional*
555 title for the link, surrounded in quotes. For example:
557 This is [an example](http://example.com/ "Title") inline link.
559 [This link](http://example.net/) has no title attribute.
564 an example</a> inline link.</p>
566 <p><a href="http://example.net/">This link</a> has no
575 which you place a label of your choosing to identify the link:
577 This is [an example][id] reference-style link.
581 This is [an example] [id] reference-style link.
583 Then, anywhere in the document, you define your link label like this,
590 * Square brackets containing the link identifier (optionally
594 * followed by the URL for the link;
595 * optionally followed by a title attribute for the link, enclosed
598 The following three link definitions are equivalent:
605 single quotes from being used to delimit link titles.
607 The link URL may, optionally, be surrounded by angle brackets:
624 [link text][a]
625 [link text][A]
629 The *implicit link name* shortcut allows you to omit the name of the
630 link, in which case the link text itself is used as the name.
631 Just use an empty set of square brackets -- e.g., to link the word
636 And then define the link:
640 Because link names may contain spaces, this shortcut even works for
641 multiple words in the link text:
645 And then define the link:
663 Using the implicit link name shortcut, you could instead write:
680 Markdown's inline link style:
828 are defined using syntax identical to link references:
844 …w the actual text of a URL or email address, and also have it be a clickable link, you can do this:
866 which will render in a browser as a clickable link to "address@example.com".