(cnt)
| 810 | |
| 811 | // 用于某些奇葩用户不使用 raw 链接的问题 |
| 812 | function rawtest(cnt) { |
| 813 | var Preg0 = RegExp(".*js-file-line\".*?\<\/td\>", "i") |
| 814 | if (Preg0.test(cnt)) { |
| 815 | return cnt.replace(/(.*js-file-line\"\>)(.*?)(\<\/td\>)/g,"$2").replace(/&/g,"&").replace(/</g,"<").replace(/>/g,">").trim() |
| 816 | } |
| 817 | } |
| 818 | |
| 819 | function ToRaw(cnt) { |
| 820 | cnt = cnt.split("\n").map(rawtest).filter(Boolean).join("\n") |
nothing calls this directly
no outgoing calls
no test coverage detected