(node, text)
| 1012 | |
| 1013 | // region 翻译兼容 |
| 1014 | function youtube(node, text) { |
| 1015 | // 替换 innerText |
| 1016 | let temp = document.createElement('span'); |
| 1017 | temp.innerHTML = text; |
| 1018 | node.innerHTML = temp.innerText; |
| 1019 | return node.outerHTML; |
| 1020 | } |
| 1021 | |
| 1022 | // endregion |
| 1023 |
nothing calls this directly
no outgoing calls
no test coverage detected