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
<p> | |
<audio class="player" controls preload="none"> | |
<source src="/mp3/{{ index .Params 0 }}" type="audio/mp3"> | |
</audio> | |
</p> |
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
[markup.goldmark.renderer] | |
unsafe= true |
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
#!/usr/bin/env python | |
import base64, json | |
import xml.etree.ElementTree as ET | |
verbose = False | |
root = ET.parse ('org.fedorahosted.freeotp/sp/tokens.xml').getroot() | |
for secrets in root.findall ('string'): | |
name = secrets.get ('name') |
OlderNewer