You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Though the docs say transcripts support markdown, this wasn't the case when I tested. I added support by modifying the get_transcripts function in build_site.py: (lines 231-233)
with open(path, "rb") as f:
transcripts[language] = f.read().decode("utf-8").replace("\n", "<br>\n")
transcripts[language] = MARKDOWN.convert(transcripts[language])
Happy to open a PR for this change but wanted to confirm first this is a bug.
The text was updated successfully, but these errors were encountered:
Though the docs say transcripts support markdown, this wasn't the case when I tested. I added support by modifying the
get_transcripts
function inbuild_site.py
: (lines 231-233)Happy to open a PR for this change but wanted to confirm first this is a bug.
The text was updated successfully, but these errors were encountered: