Created
August 24, 2024 12:00
-
-
Save emisjerry/eaada7ec56f8ceba24f74490049e645f to your computer and use it in GitHub Desktop.
Anki正面板板腳本範例
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
{{Front}} | |
<br> | |
{{#Extra}} | |
<div id="EXTRA"> | |
{{tts en_US voices=Microsoft_Mark:Extra}} | |
</div> | |
{{/Extra}} | |
{{^Extra}} | |
<div id="FRONT"> | |
{{tts en_US voices=Microsoft_Mark:Front}} | |
</div> | |
{{/Extra}} | |
<script> | |
var sDeck = "{{Deck}}"; | |
if (sDeck.indexOf("Chinese") >= 0) { | |
elem = document.getElementById("FRONT"); | |
if (elem) { | |
elem.style.display = "none"; | |
} | |
elem = document.getElementById("EXTRA"); | |
if (elem) { | |
elem.style.display = "none"; | |
} | |
} | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment