srctree

Gregory Mullen parent 84c40033 a4359c1b
skel fn for markdown highlighting

src/syntax/markdown.zig added: 8, removed: 2, total 6
@@ -64,7 +64,8 @@ pub fn translate(a: Allocator, blob: []const u8) ![]u8 {
 
try output.appendSlice("<div class=\"codeblock\">");
idx += 3;
try output.appendSlice(blob[idx..i]);
const highlighted = try highlightLangBlock(blob[idx..i], bt_code_flavor);
try output.appendSlice(highlighted);
try output.appendSlice("\n</div>");
idx = i + 4;
if (idx >= blob.len) break :sw;
@@ -90,6 +91,11 @@ pub fn translate(a: Allocator, blob: []const u8) ![]u8 {
return try output.toOwnedSlice();
}
 
fn highlightLangBlock(src: []const u8, lang: ?[]const u8) ![]const u8 {
_ = lang;
return src;
}
 
/// Returns a slice into the given string IFF it's a supported language
fn parseCodeblockFlavor(str: []const u8) ?[]const u8 {
if (eql(u8, str, "zig")) {