(value, shouldDecodeNewlines)
| 7375 | var encodedAttrWithNewLines = /&(?:lt|gt|quot|amp|#10);/g; |
| 7376 | |
| 7377 | function decodeAttr (value, shouldDecodeNewlines) { |
| 7378 | var re = shouldDecodeNewlines ? encodedAttrWithNewLines : encodedAttr; |
| 7379 | return value.replace(re, function (match) { return decodingMap[match]; }) |
| 7380 | } |
| 7381 | |
| 7382 | function parseHTML (html, options) { |
| 7383 | var stack = []; |