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.
2 parents f588258 + 11560f3 commit e31ee51Copy full SHA for e31ee51
src/psc/__main__.py
@@ -113,6 +113,12 @@ def build() -> None: # pragma: no cover
113
output = public / f"gallery/examples/{example.name}/index.html"
114
output.write_text(response.text)
115
116
+ # Now build the code page
117
+ url = f"/gallery/examples/{example.name}/code.html"
118
+ response = test_client.get(url)
119
+ output = public / f"gallery/examples/{example.name}/code.html"
120
+ output.write_text(response.text)
121
+
122
123
# @app.callback(invoke_without_command=True)
124
@app.command()
0 commit comments