srctree

Gregory Mullen parent 415382d9 d6ef94f4 329803c5
fix v0.14.0 build.zon and merge commit d6ef94f

build.zig.zon added: 11, removed: 10, total 1
@@ -1,6 +1,7 @@
.{
.name = "verse",
.name = .verse,
.version = "0.0.0",
.fingerprint = 0xd2f7e69feb304207,
.minimum_zig_version = "0.13.0",
.dependencies = .{},
 
 
src/template/page.zig added: 11, removed: 10, total 1
@@ -211,7 +211,7 @@ fn validateBlockSplit(
var wsidx = ws_start;
while (wsidx < pblob.len and
(pblob[wsidx] == ' ' or pblob[wsidx] == '\t' or
pblob[wsidx] == '\n' or pblob[wsidx] == '\r'))
pblob[wsidx] == '\n' or pblob[wsidx] == '\r'))
{
wsidx += 1;
}
@@ -360,12 +360,12 @@ pub fn validateBlock(comptime html: []const u8, BlockType: type, base_offset: us
if (Directive.init(pblob)) |drct| {
found_offsets = found_offsets ++
[_]Offset{.{
.start = open_idx,
.end = index,
.kind = .{
.slice = html[open_idx..index],
},
}} ++ validateDirective(BlockType, index, offset, drct, pblob, base_offset);
.start = open_idx,
.end = index,
.kind = .{
.slice = html[open_idx..index],
},
}} ++ validateDirective(BlockType, index, offset, drct, pblob, base_offset);
const end = drct.tag_block.len;
pblob = pblob[end..];
index += end;