Skip to content

Commit 7ecdb5e

Browse files
committed
comment and string highlight
1 parent 995f9a7 commit 7ecdb5e

File tree

2 files changed

+40
-16
lines changed

2 files changed

+40
-16
lines changed

src/writing/1-making-a-ssg1.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ for (; curr->next != 0; pre = curr, curr = curr->next) {
129129
} else if (curr->type == Text::CODE_INLINE && !curr->end) {
130130
/* Do nothing, do not parse stuff inside code */
131131
} else if (c[0] == '*' && c[1] == '*') {
132-
/* Bold *.
132+
/* Bold */
133133
134134
} else if (c[0] == '*') {
135135
/* Italic */

static-site-gen/md_to_html2.c

+39-15
Original file line numberDiff line numberDiff line change
@@ -371,32 +371,39 @@ StrList render_block(Arena *a, Block *b) {
371371
if (b->type == CODE) {
372372
StrList_pushv(a, out, strl("<code id='"), b->id, strl("'><pre>\n"));
373373
s32 line = 1;
374+
375+
s32 in_comment = 0;
376+
str comment_span = strc("<span style='color: var(--comment);'>");
374377
for (Text *t = b->text; t; t = t->next, line++) {
375378
str line_id = strf(a, "%.*s-%d", b->id.len, b->id.str, line);
376379
StrList_pushv(a, out, strl("<span id='"), line_id, strl("'>"));
377380
StrList_pushv(a, out, strl("<a href='#"), line_id, strl("' aria-hidden='true'></a>"));
381+
382+
if (in_comment == 2) {
383+
StrList_push(a, out, comment_span);
384+
}
378385

386+
char in_string = 0;
379387
str s = t->text;
380-
s32 in_comment = 0;
388+
char pc = 0;
381389
str_iter(s, i, c) { /* Escape HTML characters in code blocks */
382390

383391
if (str_has_prefix(str_skip(s, i), strl("//"))) {
384392
in_comment = 1;
385-
StrList_pushv(a, out, str_first(s, i-2), strl("<span style='color: var(--green);'>//"));
386-
s = str_skip(s, i+2); i = -1;
393+
StrList_pushv(a, out, str_first(s, i), comment_span);
394+
s = str_skip(s, i); i = 2;
387395
}
396+
388397
if (str_has_prefix(str_skip(s, i), strl("/*"))) {
389398
in_comment = 2;
390-
StrList_pushv(a, out, str_first(s, i), strl("<span style='color: var(--green);'>/*"));
391-
s = str_skip(s, i+2); i = -1;
392-
}
393-
394-
if (in_comment == 2 && str_has_prefix(str_skip(s, i), strl("*/"))) {
399+
StrList_pushv(a, out, str_first(s, i), comment_span);
400+
s = str_skip(s, i); i = 2;
401+
} else if (in_comment == 2 && str_has_prefix(str_skip(s, i), strl("*/"))) {
395402
in_comment = 0;
396403
StrList_pushv(a, out, str_first(s, i), strl("*/</span>"));
397404
s = str_skip(s, i+2); i = -1;
398405
}
399-
406+
400407
switch (c) {
401408
case '<': {
402409
StrList_pushv(a, out, str_first(s, i), strl("&lt;"));
@@ -410,16 +417,33 @@ StrList render_block(Arena *a, Block *b) {
410417
StrList_pushv(a, out, str_first(s, i), strl("&amp;"));
411418
s = str_skip(s, i+1); i = -1;
412419
} break;
413-
case '\n': {
414-
if (in_comment == 1) {
415-
in_comment = 0;
416-
StrList_pushv(a, out, str_first(s, i), strl("</span>"));
417-
s = str_skip(s, i+1); i = -1;
420+
case '\'':
421+
case '"': {
422+
if (in_comment == 0) {
423+
if (in_string == 0) {
424+
in_string = c;
425+
StrList_pushv(a, out, str_first(s, i), strl("<span style='color: var(--red);'>"));
426+
s = str_skip(s, i); i = 0;
427+
} else if (in_string == c) {
428+
in_string = 0;
429+
StrList_pushv(a, out, str_first(s, i+1), strl("</span>"));
430+
s = str_skip(s, i+1); i = 0;
431+
}
418432
}
433+
} break;
419434
}
435+
436+
pc = c;
437+
}
438+
439+
StrList_push(a, out, s);
440+
if (in_comment > 0) {
441+
if (in_comment == 1) {
442+
in_comment = 0;
420443
}
444+
StrList_push(a, out, strl("</span>"));
421445
}
422-
StrList_pushv(a, out, s, strl("</span>"));
446+
StrList_push(a, out, strl("</span>"));
423447
}
424448
StrList_pushv(a, out, strl("</pre></code>\n"));
425449
}

0 commit comments

Comments
 (0)