Skip to content

Instantly share code, notes, and snippets.

@emisjerry
Created August 24, 2024 12:00
Show Gist options
  • Save emisjerry/eaada7ec56f8ceba24f74490049e645f to your computer and use it in GitHub Desktop.
Save emisjerry/eaada7ec56f8ceba24f74490049e645f to your computer and use it in GitHub Desktop.
Anki正面板板腳本範例
{{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