blob: 27e3040015684df5aa4eab58aaab78c987304299 (
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
|
linebuf : [256]u8 = uninitialized
linepos : size = 0;
append :: action capture(linebuf, linepos) receive(s: str)
do
linebuf.append(
end
define reset(linebuf) :: clear_to_zero(linebuf);
define reset(linepos) :: linepos = 0;
foreach (line in lines)
do
reset linebuf, linepos;
if line.starts_with("# ")
append "<h1>";
append line[2..];
append "</h1>";
...
# handle @@[][]
i : size = 0;
while (line.locate_next("@@[")) |pos|
do
std.mem.copy(dest: linebuf, src: line, from: i, to: pos);
append line[from:pos];
end
end
|