OLD | NEW |
(Empty) | |
| 1 [foo]: http://prismjs.com |
| 2 [foo]: http://prismjs.com "foo\"bar" |
| 3 [foo]: http://prismjs.com 'foo\'bar' |
| 4 ![foo]: http://prismjs.com (foo (bar\) baz) |
| 5 [foo]: <http://prismjs.com> "Prism" |
| 6 |
| 7 ---------------------------------------------------- |
| 8 |
| 9 [ |
| 10 ["url-reference", [ |
| 11 ["punctuation", "["], |
| 12 ["variable", "foo"], |
| 13 ["punctuation", "]"], |
| 14 ["punctuation", ":"], |
| 15 " http://prismjs.com" |
| 16 ]], |
| 17 ["url-reference", [ |
| 18 ["punctuation", "["], |
| 19 ["variable", "foo"], |
| 20 ["punctuation", "]"], |
| 21 ["punctuation", ":"], |
| 22 " http://prismjs.com ", |
| 23 ["string", "\"foo\\\"bar\""] |
| 24 ]], |
| 25 ["url-reference", [ |
| 26 ["punctuation", "["], |
| 27 ["variable", "foo"], |
| 28 ["punctuation", "]"], |
| 29 ["punctuation", ":"], |
| 30 " http://prismjs.com ", |
| 31 ["string", "'foo\\'bar'"] |
| 32 ]], |
| 33 ["url-reference", [ |
| 34 ["punctuation", "!"], |
| 35 ["punctuation", "["], |
| 36 ["variable", "foo"], |
| 37 ["punctuation", "]"], |
| 38 ["punctuation", ":"], |
| 39 " http://prismjs.com ", |
| 40 ["string", "(foo (bar\\) baz)"] |
| 41 ]], |
| 42 ["url-reference", [ |
| 43 ["punctuation", "["], |
| 44 ["variable", "foo"], |
| 45 ["punctuation", "]"], |
| 46 ["punctuation", ":"], |
| 47 ["punctuation", "<"], |
| 48 "http://prismjs.com", |
| 49 ["punctuation", ">"], |
| 50 ["string", "\"Prism\""] |
| 51 ]] |
| 52 ] |
| 53 |
| 54 ---------------------------------------------------- |
| 55 |
| 56 Checks for URL references. |
OLD | NEW |