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 3394eec commit b4e7f60Copy full SHA for b4e7f60
1 file changed
.github/workflows/doc-build.yml
@@ -172,7 +172,7 @@ jobs:
172
for block in diff_blocks:
173
match = re.search(r'^diff --git a/(.*) b/\1', block, flags=re.MULTILINE)
174
if match:
175
- path = 'html' + match.group(1)
+ path = 'html/' + match.group(1)
176
out_blocks.append(f'<p class="diff"><a href="{path}">{path}</a> </p>\n<pre><code class="language-diff">' + html.escape(block).strip() + '</code></pre>')
177
output_text = '\n'.join(out_blocks)
178
with open('./docs/diff.html', 'w') as f:
0 commit comments