Last active
June 14, 2020 02:03
-
-
Save liuxilu/a9c691348af6f80e49126693a7171073 to your computer and use it in GitHub Desktop.
bilingual (two-language) microsoft document. 双语对照 微软 文档
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//select the switch on the top-right page to show english first. | |
if(document.querySelector("#language-toggle")!=undefined){ | |
document.querySelectorAll("span[style='display: inline;']").forEach(a=>{a.innerHTML='<sup>'+a.innerHTML+'</sup><br>';}); | |
document.querySelectorAll("span[style='display: none;']").forEach(a=>{a.style='display:inline';a.innerHTML=a.innerHTML+'<br>';}); } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment