Skip to content

Commit f4f353d

Browse files
committed
remove dead code
1 parent ced425c commit f4f353d

File tree

1 file changed

+0
-23
lines changed

1 file changed

+0
-23
lines changed

static-site-gen/md_to_html.c

-23
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,5 @@
11
#include "md_to_html.h"
22

3-
void print_tree(Text *text) {
4-
if (!text) return;
5-
switch (text->type) {
6-
case TEXT: { printf("%.*s", (s32) text->text.len, text->text.str); } break;
7-
case BOLD: { printf("**"); } break;
8-
case ITALIC: { printf("*"); } break;
9-
case STRUCK: { printf("~~"); } break;
10-
case LINK: { printf("@("); } break;
11-
}
12-
print_tree(text->child);
13-
switch (text->type) {
14-
case BOLD: { printf("**"); } break;
15-
case ITALIC: { printf("*"); } break;
16-
case STRUCK: { printf("~~"); } break;
17-
case LINK: { printf(")"); } break;
18-
}
19-
print_tree(text->next);
20-
}
21-
223
str parse_inline(Arena *a, Text *text);
234

245
static Text *new_text(Arena *a, str text, enum TextTypes type) {
@@ -384,9 +365,7 @@ StrList render_block(Arena *a, Block *b) {
384365

385366
char in_string = 0;
386367
str s = t->text;
387-
char pc = 0;
388368
str_iter(s, i, c) { /* Escape HTML characters in code blocks */
389-
390369
if (str_has_prefix(str_skip(s, i), strl("//"))) {
391370
in_comment = 1;
392371
StrList_pushv(a, out, str_first(s, i), comment_span);
@@ -432,8 +411,6 @@ StrList render_block(Arena *a, Block *b) {
432411
}
433412
} break;
434413
}
435-
436-
pc = c;
437414
}
438415

439416
StrList_push(a, out, s);

0 commit comments

Comments
 (0)