aboutsummaryrefslogtreecommitdiff
path: root/src/quote.zig
blob: 8c24c7ec728d0c1e636e33c856b29e81107b882d (plain)
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
const std = @import("std");
const Allocator = std.mem.Allocator;
const Token = @import("lexer/Token.zig");
const Lexer = @import("lexer/Lexer.zig");
const Element = @import("eval/Element.zig");
const paragraph = @import("paragraph.zig");
const testing = @import("testing.zig");
const doTest = testing.do;
const doTestError = testing.doError;

pub const Error = paragraph.Error || Allocator.Error;

pub fn parse(alloc: Allocator, l: *Lexer) Error!Element {
    const root = try Element.Root.init(alloc);
    while (l.peek()) |next| switch (next.kind) {
        .quote => {
            l.consume();
            continue;
        },
        .weak_delimiter => {
            l.consume();
            if (l.peek()) |it| if (it.kind != .quote) break;
            root.append((try Element.Literal.init(alloc, " ")).element());
            continue;
        },
        .strong_delimiter => break,
        else => root.append(try paragraph.parseLine(alloc, l)),
    };
    const el = try Element.Quote.init(alloc, root.element());
    const v = l.peek() orelse return el.element();
    if (v.kind == .strong_delimiter) {
        l.consume();
        return el.element();
    }
    const attr = try paragraph.parse(alloc, l);
    const p_el: *Element.paragraph.Block = @ptrCast(@alignCast(attr.ptr));
    el.attribution = (try p_el.toRoot(alloc)).element();
    return el.element();
}

test {
    const alloc = std.testing.allocator;

    try doTest(parse, alloc, "> hello world", "<figure><blockquote>hello world</blockquote></figure>");
    try doTest(parse, alloc, ">hello world", "<figure><blockquote>hello world</blockquote></figure>");
    try doTest(parse, alloc, ">   hello world", "<figure><blockquote>hello world</blockquote></figure>");

    try doTest(parse, alloc, 
        \\> hello
        \\>world
    , "<figure><blockquote>hello world</blockquote></figure>");
    try doTest(parse, alloc, 
        \\> hello
        \\>world
        \\attribution sur
        \\plusieurs lignes
    , "<figure><blockquote>hello world</blockquote><figcaption>attribution sur plusieurs lignes</figcaption></figure>");
}