OLD | NEW |
(Empty) | |
| 1 .. [1] Foo |
| 2 .. [2] Bar |
| 3 .. [#] Baz |
| 4 .. [#foobar] Foobar |
| 5 .. [CIT2002] Foobar |
| 6 |
| 7 .. _foobar: Foobar |
| 8 .. _foo\:bar: Foobar |
| 9 .. _`foo:bar`: Foobar |
| 10 .. __: Anonymous |
| 11 |
| 12 ---------------------------------------------------- |
| 13 |
| 14 [ |
| 15 ["punctuation", ".."], |
| 16 ["link-target", [ |
| 17 ["punctuation", "["], |
| 18 "1", |
| 19 ["punctuation", "]"] |
| 20 ]], |
| 21 " Foo\r\n", |
| 22 |
| 23 ["punctuation", ".."], |
| 24 ["link-target", [ |
| 25 ["punctuation", "["], |
| 26 "2", |
| 27 ["punctuation", "]"] |
| 28 ]], |
| 29 " Bar\r\n", |
| 30 |
| 31 ["punctuation", ".."], |
| 32 ["link-target", [ |
| 33 ["punctuation", "["], |
| 34 "#", |
| 35 ["punctuation", "]"] |
| 36 ]], |
| 37 " Baz\r\n", |
| 38 |
| 39 ["punctuation", ".."], |
| 40 ["link-target", [ |
| 41 ["punctuation", "["], |
| 42 "#foobar", |
| 43 ["punctuation", "]"] |
| 44 ]], |
| 45 " Foobar\r\n", |
| 46 |
| 47 ["punctuation", ".."], |
| 48 ["link-target", [ |
| 49 ["punctuation", "["], |
| 50 "CIT2002", |
| 51 ["punctuation", "]"] |
| 52 ]], |
| 53 " Foobar\r\n\r\n", |
| 54 |
| 55 ["punctuation", ".."], |
| 56 ["link-target", [ |
| 57 ["punctuation", "_"], |
| 58 "foobar", |
| 59 ["punctuation", ":"] |
| 60 ]], |
| 61 " Foobar\r\n", |
| 62 |
| 63 ["punctuation", ".."], |
| 64 ["link-target", [ |
| 65 ["punctuation", "_"], |
| 66 "foo\\:bar", |
| 67 ["punctuation", ":"] |
| 68 ]], |
| 69 " Foobar\r\n", |
| 70 |
| 71 ["punctuation", ".."], |
| 72 ["link-target", [ |
| 73 ["punctuation", "_"], |
| 74 "`foo:bar`", |
| 75 ["punctuation", ":"] |
| 76 ]], |
| 77 " Foobar\r\n", |
| 78 |
| 79 ["punctuation", ".."], |
| 80 ["link-target", [ |
| 81 ["punctuation", "_"], |
| 82 ["punctuation", "_"], |
| 83 ["punctuation", ":"] |
| 84 ]], |
| 85 " Anonymous" |
| 86 ] |
| 87 |
| 88 ---------------------------------------------------- |
| 89 |
| 90 Checks for link targets. |
OLD | NEW |