1
0
Fork 0
mirror of https://github.com/ganelson/inform.git synced 2024-05-19 01:18:43 +03:00

Minor bug fix

This commit is contained in:
Graham Nelson 2023-12-31 09:02:13 +00:00
parent 06cfa98854
commit 5d91f9b3d1

View file

@ -219,13 +219,15 @@ void ExtensionWebsite::document_extension(inform_extension *E, inform_project *p
}
@<Add testing page@> =
text_stream *MD = DocumentationRenderer::open_subpage(P, I"testing.html");
TEMPORARY_TEXT(title)
WRITE_TO(title, "%X", E->as_copy->edition->work);
DocumentationRenderer::render_header(MD, title, I"Testing", NULL);
DISCARD_TEXT(title)
ExtensionWebsite::write_testing_page(MD, doc, E, proj);
DocumentationRenderer::close_subpage();
if (doc) {
text_stream *MD = DocumentationRenderer::open_subpage(P, I"testing.html");
TEMPORARY_TEXT(title)
WRITE_TO(title, "%X", E->as_copy->edition->work);
DocumentationRenderer::render_header(MD, title, I"Testing", NULL);
DISCARD_TEXT(title)
ExtensionWebsite::write_testing_page(MD, doc, E, proj);
DocumentationRenderer::close_subpage();
}
@ =
void ExtensionWebsite::write_metadata_page(OUTPUT_STREAM, inform_extension *E) {