Skip to content

Instantly share code, notes, and snippets.

@kelciour
Created July 25, 2016 13:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kelciour/59d6e18b4da410c4327655745400730a to your computer and use it in GitHub Desktop.
Save kelciour/59d6e18b4da410c4327655745400730a to your computer and use it in GitHub Desktop.
Anki. English Grammar In Use
==================
Добавить в Styling
==================
.replaybutton { content:url("AUDIO-2x.png"); width:22px; }
a img { width:22px; }
==================
======================
Заменить Back Template
======================
{{H1}}
{{H2}}
{{BODY}}
<div id="sound" style="display:none;">{{SOUND}}</div>
<script>
sound = document.getElementById("sound").innerHTML
arr = sound.replace(/><a/g,">|<a").split("|")
content = document.body.innerHTML
for (var i = 0; i < arr.length; i++) {
content = content.replace(/<a><[^<]*src="AUDIO-2x.png"[^>]*><\/a>/, arr[i])
}
document.body.innerHTML = content
</script>
======================
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment