diff options
author | John MacFarlane <jgm@berkeley.edu> | 2015-03-15 12:01:14 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2015-03-15 12:01:14 -0700 |
commit | f6e46b7146850a139f280375ba4bca4455f1e433 (patch) | |
tree | 47b581f7bfe56395c6a400273b545ac9483c0e84 | |
parent | 0deb7c507d85c1f17b31670f617b2f5d2029a16c (diff) | |
download | pandoc-f6e46b7146850a139f280375ba4bca4455f1e433.tar.gz |
Moved and rewrote documentation for `shortcut_reference_links` ext.
-rw-r--r-- | README | 18 |
1 files changed, 11 insertions, 7 deletions
@@ -2439,9 +2439,9 @@ Note that link labels are not case sensitive. So, this will work: [Foo]: /bar/baz In an *implicit* reference link, the second pair of brackets is -empty, or omitted entirely: +empty: - See [my website][], or [my website]. + See [my website][]. [my website]: http://foo.bar.baz @@ -2455,6 +2455,15 @@ not in most other implementations: > > [quote]: /foo +#### Extension: `shortcut_reference_links` #### + +In a *shortcut* reference link, the second pair of brackets may +be omitted entirely: + + See [my website]. + + [my website]: http://foo.bar.baz + ### Internal links ### To link to another section of the same document, use the automatically @@ -2790,11 +2799,6 @@ in several respects: we must either disallow lazy wrapping or require a blank line between list items. -#### Extension: `shortcut_reference_links` #### - -Allows to use shortcut reference links: `[foo]` instead of `[foo][]`. Writer -would shortcut links unless doing so might cause problems. - Markdown variants ----------------- |