diff options
Diffstat (limited to 'journal.c')
-rw-r--r-- | journal.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -41,7 +41,7 @@ static void print_entry(char *path, char *ts) struct tm tm; strptime(ts, "%s", &tm); printf( - "<div class='entry'><p><span class='date'>%d/%02d/%02d</span> ", + "<div class='entry'><p><strong>%d/%02d/%02d</strong> ", tm.tm_year + 1900, tm.tm_mon + 1, tm.tm_mday); for (int c = getc(f), nl = 0; c != EOF; c = getc(f)) { |