We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19c7e0f commit 4edf826Copy full SHA for 4edf826
_ext/ext.py
@@ -293,10 +293,7 @@ def on_build_finished(app, exc):
293
if exc is None and app.builder.format == "html":
294
# Unescape at symbol
295
subprocess.run(
296
- "find " + str(app.outdir) + r" -type f -not -path '*/\.git/*' -exec sed -i 's/%40/@/g' {} +",
297
- shell=True)
298
- subprocess.run( # undo incorrect escape in plotly js
299
- "sed -i 's/t@0=/t%400=/g' " + str(app.outdir) + "/packages.html",
+ "find " + str(app.outdir) + r" -type f -not -path '*/\.git/*' -exec sed -i 's/%40unicatt/@unicatt/g' {} +",
300
shell=True)
301
# Mark current page as active
302
0 commit comments