()
| 1535 | // Attempt to parse link title (sans quotes), returning the string |
| 1536 | // or null if no match. |
| 1537 | var parseLinkTitle = function() { |
| 1538 | var title = this.match(reLinkTitle); |
| 1539 | if (title === null) { |
| 1540 | return null; |
| 1541 | } else { |
| 1542 | // chop off quotes from title and unescape: |
| 1543 | return unescapeString(title.substr(1, title.length - 2)); |
| 1544 | } |
| 1545 | }; |
| 1546 | |
| 1547 | // Attempt to parse link destination, returning the string or |
| 1548 | // null if no match. |
nothing calls this directly
no test coverage detected