Skip to content

Commit 2bedfa0

Browse files
committed
Update to 6L38 version of cBlorb
1 parent 8ede563 commit 2bedfa0

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/cBlorb/Chapter 3/Links and Auxiliary Files.w

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ will not work.
131131
void expand_COVER_variable(FILE *COPYTO) {
132132
if (cover_exists) {
133133
char *format = "png"; if (cover_is_in_JPEG_format) format = "jpg";
134-
fprintf(COPYTO, "<a href=\"Cover.%s\"><img src=\"Small Cover.%s\" border=\"1\" /></a>",
134+
fprintf(COPYTO, "<a href=\"Cover.%s\"><img src=\"Small Cover.%s\" border=\"1\"></a>",
135135
format, format);
136136
}
137137
}

src/cBlorb/Chapter 3/Website Maker.w

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ void close_code_paragraph(FILE *write_to) {
205205
if (use_css_code_styles) {
206206
fprintf(write_to, "</p>");
207207
} else {
208-
fprintf(write_to, "<br/>");
208+
fprintf(write_to, "<br>");
209209
}
210210
}
211211

@@ -1034,7 +1034,7 @@ void typeset_contents_listing(int source_contents) {
10341034
new_level = h->heading_level;
10351035
if (h->heading_level == EXAMPLE_LEVEL) new_level = DOC_CHAPTER_LEVEL;
10361036
@<Open or close UL tags to move to the new heading level@>;
1037-
fprintf(SPAGE, "<li><a href=%s>%s</a></li>\n",
1037+
fprintf(SPAGE, "<li><a href=\"%s\">%s</a></li>\n",
10381038
h->heading_to_segment->segment_url, h->heading_text);
10391039
}
10401040
new_level = benchmark_level-1;

0 commit comments

Comments
 (0)