summaryrefslogtreecommitdiff
path: root/scripts/kmd/src/kmd.zig
blob: 38cb96ea13a3e37f7c58dae6635de73decb8fd12 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
const std = @import("std");
const util = @import("./util.zig");
const Allocator = std.mem.Allocator;
const expect = std.testing.expect;

// Kmd = Kinda Markdown

// Supported Elements
// <hN> <p> <ul> <ol> <b> <em> <br>
//  #         -    ~   _   *    ;;

// * will always be turned into <i> (or </i> if already italic).
// Same with _. To prevent this, \* should be used.

// Also should handle:
// <, >    -> &lt;, &gt;

// Also, allows for comments, with:
// #[ ]#   -> <!-- -->
// And ##[]## for hidden comments, that only show if the show_hidden_comments option is passed.

// Images can be added with:
// @@img[/assets/src.jpg][alttext]  -> <img src="/assets/src.jpg" alt="alttext">

// For a line to be raw and unprocessed (useful for writing raw HTML):
// #[raw]# <p> <a href="/foo">this line is just html raw!</a> </p>

// For spans that are given attributes, do:
// ~[attr][text]

pub const WcMode = enum { words, lines, bytes };

pub const Kmd = struct {
    const Mode = enum {
        none,
        p,
        ul,
        ol,
    };
    pub const KmdHtmlOptions = struct {
        br_after_newline: bool,
        show_hidden_comments: bool, // ##[ ]##
        debug: bool,
    };

    title: []const u8,
    date: []const u8,
    tags: []const u8,
    contents: []const u8,

    /// Initialise the text of the file.
    pub fn init(self: *Kmd, text: []const u8) void {
        var it = std.mem.splitAny(u8, text, "\n");
        self.title = it.first();
        self.date = it.next().?;
        self.tags = it.next().?;
        self.contents = it.rest();
    }

    /// Get the word count of the title - this is a naive count of spaces.
    pub fn titleWc(self: Kmd) usize {
        if (self.title.len == 0) {
            return 0;
        } else {
            return std.mem.count(u8, self.title, " ") + 1;
        }
    }

    /// Get the word count of the article.
    pub fn wc(self: Kmd, mode: WcMode) usize {
        if (self.contents.len == 0) {
            return 0;
        }

        // TODO
        // Implement by going like by line, and if we encounter @@[ then count
        // until ][ then skip until ]. The rest of the punctuation shouldn't
        // cause an issue.
        if (mode == .bytes) {
            return self.contents.len;
        }
        const char = switch (mode) {
            .words => " ",
            .lines => "\n",
            else => unreachable,
        };
        return std.mem.count(u8, self.contents, char) + 1;
    }

    /// Pass in the word-count if you already have it to avoid recalculating.
    pub fn averageMinutesTakenToRead(self: Kmd, maybe_wc: ?usize) usize {
        const wc_ = maybe_wc orelse self.wc(.words);
        const mins = wc_ / 238;
        return if (mins == 0) 1 else mins;
    }

    // Appends to buf if passed, and returns the size of the buf otherwise.
    fn htmlBackingFn(self: Kmd, opts: KmdHtmlOptions, append: fn (unused: []u8, pos: *usize, data: []const u8) void, buf: ?*[]u8) usize {
        var mode: Mode = .none;
        var is_strong = false;
        var is_emphatic = false;
        var iter = std.mem.splitAny(u8, self.contents, "\n");
        var pos: usize = 0; // position in the buffer

        // As we iterate linewise, this holds the constructed line as we go through it,
        // ane is copied at the end of each line.
        var line: []const u8 = iter.first();
        var linenum: usize = 0;
        var linebuf: [256]u8 = undefined;
        var linepos: usize = 0;

        while (true) : ({
            // Reset `linebuf`, append to `buf`, go to next iteration.
            if (buf) |b| {
                std.mem.copyForwards(u8, b.*[pos..], linebuf[0..linepos]);
            }
            pos += linepos;

            if (opts.br_after_newline) {
                if (buf) |b| {
                    std.mem.copyForwards(u8, b.*[pos..], "<br>");
                }
                pos += 4;
            }

            if (buf) |b| {
                std.mem.copyForwards(u8, b.*[pos..], "\n");
            }
            pos += 1;

            @memset(&linebuf, 0);
            linepos = 0;
            linenum += 1;

            if (iter.next()) |v| {
                line = v;
            } else {
                switch (mode) {
                    .p => {
                        if (buf) |b| {
                            std.mem.copyForwards(u8, b.*[pos..], "</p>\n");
                        }
                        pos += 5;
                    },
                    .ul => {
                        if (buf) |b| {
                            std.mem.copyForwards(u8, b.*[pos..], "</li>\n</ul>\n");
                        }
                        pos += 6;
                    },
                    .ol => {
                        if (buf) |b| {
                            std.mem.copyForwards(u8, b.*[pos..], "</li>\n</ol>\n");
                        }
                        pos += 6;
                    },
                    else => {},
                }
                break;
            }
        }) {
            // Handle <hN>.
            // <hN> cannot accept any other formatting, e.g. links, bold, etc. It is plaintext.
            if (std.mem.startsWith(u8, line, "# ")) {
                append(&linebuf, &linepos, "<h1>");
                append(&linebuf, &linepos, line[2..]);
                append(&linebuf, &linepos, "</h1>");
                continue;
            }

            if (std.mem.startsWith(u8, line, "## ")) {
                append(&linebuf, &linepos, "<h2>");
                append(&linebuf, &linepos, line[3..]);
                append(&linebuf, &linepos, "</h2>");
                continue;
            }

            if (std.mem.startsWith(u8, line, "### ")) {
                append(&linebuf, &linepos, "<h3>");
                append(&linebuf, &linepos, line[4..]);
                append(&linebuf, &linepos, "</h3>");
                continue;
            }

            if (std.mem.startsWith(u8, line, "#### ")) {
                append(&linebuf, &linepos, "<h4>");
                append(&linebuf, &linepos, line[5..]);
                append(&linebuf, &linepos, "</h4>");
                continue;
            }

            if (std.mem.startsWith(u8, line, "#[raw]#")) {
                append(&linebuf, &linepos, line[7..]);
                continue;
            }

            if (mode == .none) {
                if (std.mem.startsWith(u8, line, "- ")) {
                    mode = .ul;
                    append(&linebuf, &linepos, "<ul>\n<li>\n");
                    line = line[2..];
                } else if (std.mem.startsWith(u8, line, "~ ")) {
                    mode = .ol;
                    append(&linebuf, &linepos, "<ol>\n<li>\n");
                    line = line[2..];
                } else {
                    mode = .p;
                    append(&linebuf, &linepos, "<p>\n");
                }
            } else {
                // Handle empty line
                if (std.mem.eql(u8, line, "")) {
                    switch (mode) {
                        .p => append(&linebuf, &linepos, "</p>"),
                        .ul => append(&linebuf, &linepos, "</li>\n</ul>"),
                        .ol => append(&linebuf, &linepos, "</li>\n</ol>"),
                        .none => {}, // do nothing,
                    }
                    mode = .none;
                    continue;
                }

                if ((mode == .ul or mode == .ol) and
                    (std.mem.startsWith(u8, line, "- ") or std.mem.startsWith(u8, line, "~ ")))
                {
                    append(&linebuf, &linepos, "</li>\n<li>\n");
                    line = line[2..];
                }

                if (mode == .p and std.mem.startsWith(u8, line, "- ") or std.mem.startsWith(u8, line, "~ ")) {
                    append(&linebuf, &linepos, "</p>\n");
                    if (std.mem.startsWith(u8, line, "- ")) {
                        mode = .ul;
                        append(&linebuf, &linepos, "<ul>\n<li>\n");
                    } else {
                        mode = .ol;
                        append(&linebuf, &linepos, "<ol>\n<li>\n");
                    }
                    line = line[2..];
                }
            }

            const vals: [11][]const u8 = .{ "@@[", "_", "*", ";;", "<", ">", "#[", "]#", "@@img[", "##[", "~[" };
            while (true) {
                const found = util.indexOfAnyArray(u8, line, 0, &vals) orelse {
                    // Copy the entire rest of line
                    append(&linebuf, &linepos, line[0..]);
                    break;
                };

                if (opts.debug) {
                    std.debug.print("[{d}] Iterating: found {any} at index {any}.\n", .{ linenum, found.value, found.index });
                }

                // Copy up until the token
                append(&linebuf, &linepos, line[0..found.index]);

                // Handle the particular token
                switch (found.value) {
                    0 => { // @@[desc][href]
                        // These constants describe indexes into line.
                        const desc_begin = found.index + 3;
                        const desc_end = std.mem.indexOfPos(u8, line, desc_begin, "][") orelse @panic("could not find ][ to terminate the description of anchor tag");
                        const href_begin = desc_end + 2;
                        const href_end = std.mem.indexOfPos(u8, line, href_begin, "]") orelse @panic("could not find ] to terminate href of anchor tag");

                        const desc = line[desc_begin..desc_end];
                        const href = line[href_begin..href_end];

                        append(&linebuf, &linepos, "<a href=\"");
                        append(&linebuf, &linepos, href);
                        append(&linebuf, &linepos, "\">");
                        append(&linebuf, &linepos, desc);
                        append(&linebuf, &linepos, "</a>");

                        line = line[href_end + "]".len ..];
                    },

                    1 => { // _
                        append(&linebuf, &linepos, if (is_strong) "</strong>" else "<strong>");
                        is_strong = !is_strong;
                        line = line[found.index + "_".len ..];
                    },

                    2 => { // *
                        append(&linebuf, &linepos, if (is_emphatic) "</em>" else "<em>");
                        is_emphatic = !is_emphatic;
                        line = line[found.index + "*".len ..];
                    },

                    3 => { // ;;
                        append(&linebuf, &linepos, "<br>");
                        line = line[found.index + ";;".len ..];
                    },

                    4 => { // <
                        append(&linebuf, &linepos, "&lt;");
                        line = line[found.index + "<".len ..];
                    },

                    5 => { // >
                        append(&linebuf, &linepos, "&gt;");
                        line = line[found.index + ">".len ..];
                    },

                    6 => { // #[
                        append(&linebuf, &linepos, "<!--");
                        line = line[found.index + "#[".len ..];
                    },

                    7 => { // ]#
                        append(&linebuf, &linepos, "-->");
                        line = line[found.index + "]#".len ..];
                    },

                    8 => { // @@img[src][alt]
                        const src_begin = found.index + 6;
                        const src_end = std.mem.indexOfPos(u8, line, src_begin, "][").?;
                        const alt_begin = src_end + 2;
                        const alt_end = std.mem.indexOfPos(u8, line, alt_begin, "]").?;

                        const src = line[src_begin..src_end];
                        const alt = line[alt_begin..alt_end];

                        append(&linebuf, &linepos, "<img src=\"");
                        append(&linebuf, &linepos, src);
                        append(&linebuf, &linepos, "\" alt=\"");
                        append(&linebuf, &linepos, alt);
                        append(&linebuf, &linepos, "\">");

                        line = line[alt_end + "]".len ..];
                    },

                    9 => { // ##[ - only output if show_hidden_comments passed.
                        const hc_begin = found.index + 3;
                        const hc_end = std.mem.indexOfPos(u8, line, hc_begin, "]##") orelse @panic("not yet implemented support for multiline hidden comments");

                        if (opts.show_hidden_comments) {
                            const hc = line[hc_begin..hc_end];
                            append(&linebuf, &linepos, hc);
                        }

                        line = line[hc_end + "]##".len ..];
                    },

                    10 => { // ~[attr][text] for spans with attributes
                        // These constants describe indexes into line.
                        const attr_begin = found.index + 2;
                        const attr_end = std.mem.indexOfPos(u8, line, attr_begin, "][") orelse @panic("could not find ][ to terminate the description of attr span");
                        const text_begin = attr_end + 2;
                        const text_end = std.mem.indexOfPos(u8, line, text_begin, "]") orelse @panic("could not find ] to terminate text of attr span");

                        const attr = line[attr_begin..attr_end];
                        const text = line[text_begin..text_end];

                        append(&linebuf, &linepos, "<span class=\"");
                        append(&linebuf, &linepos, attr);
                        append(&linebuf, &linepos, "\">");
                        append(&linebuf, &linepos, text);
                        append(&linebuf, &linepos, "</span>");
                        line = line[text_end + "]".len ..];
                    },

                    else => unreachable,
                }
            }
        }
        if (opts.debug) {
            std.debug.print("sizeofHtml :: return = {any}\n", .{pos});
        }
        return pos;
    }

    fn sizeofHtml(self: Kmd, opts: KmdHtmlOptions) usize {
        const append = struct {
            fn append(unused: []u8, pos: *usize, data: []const u8) void {
                _ = unused;
                pos.* += data.len;
            }
        }.append;

        return htmlBackingFn(self, opts, append, null);
    }

    pub fn html(self: Kmd, allocator: Allocator, opts: KmdHtmlOptions, req_capacity_if_known: ?usize) ![]const u8 {
        const append = struct {
            fn append(buf: []u8, pos: *usize, data: []const u8) void {
                std.mem.copyForwards(u8, buf[pos.*..], data);
                pos.* += data.len;
            }
        }.append;

        const req_capacity = req_capacity_if_known orelse sizeofHtml(self, opts);
        var buf: []u8 = try allocator.alloc(u8, req_capacity);

        _ = htmlBackingFn(self, opts, append, &buf);
        return buf;
    }
};

test "kmd" {
    const allocator = std.testing.allocator;
    var foo: Kmd = undefined;

    const s1 =
        \\A good title
        \\2024-10-31
        \\This is a paragraph.
        \\
        \\This is another: it *has* _formatting_ and @@[hyperlinks][https://example.com].
        \\In fact, it even spans multiple lines!
        \\
        \\A list would be like this:
        \\- I like big butts
        \\- and I cannot lie.
        \\
        \\~ Entry eins
        \\~ Entry zwei
        \\
        \\Yayy!
        \\
        \\Bye.
        \\
    ;

    const r1 =
        \\<p>
        \\This is a paragraph.
        \\</p>
        \\<p>
        \\This is another: it <em>has</em> <strong>formatting</strong> and <a href="https://example.com">hyperlinks</a>.
        \\In fact, it even spans multiple lines!
        \\</p>
        \\<p>
        \\A list would be like this:
        \\</p>
        \\<ul>
        \\<li>
        \\I like big butts
        \\</li>
        \\<li>
        \\and I cannot lie.
        \\</li>
        \\</ul>
        \\<ol>
        \\<li>
        \\Entry eins
        \\</li>
        \\<li>
        \\Entry zwei
        \\</li>
        \\</ol>
        \\<p>
        \\Yayy!
        \\</p>
        \\<p>
        \\Bye.
        \\</p>
        \\
    ;
    foo.init(s1);
    const res1 = try foo.html(allocator, .{ .br_after_newline = false }, null);
    defer allocator.free(res1);
    try std.testing.expectEqualStrings(r1, res1);

    // Test br_after_newline
    const s2 =
        \\My poetry is amazing
        \\2024-11-01
        \\I am such a good poet
        \\Truly fantastic
        \\So great
        \\Lol xD
    ;

    const r2 =
        \\<p>
        \\I am such a good poet<br>
        \\Truly fantastic<br>
        \\So great<br>
        \\Lol xD<br>
        \\</p>
        \\
    ;

    foo.init(s2);
    const res2 = try foo.html(allocator, .{ .br_after_newline = true }, null);
    defer allocator.free(res2);
    try std.testing.expectEqualStrings(r2, res2);
}