srctree

Gregory Mullen parent eaf7961d 0da605c3
add triple backtick to markdown

src/endpoints/repos.zig added: 51, removed: 16, total 35
@@ -597,10 +597,7 @@ fn htmlReadme(a: Allocator, readme: []const u8) ![]html.E {
dom = dom.open(html.element("code", null, null));
const clean = Bleach.Html.sanitizeAlloc(a, readme) catch return error.Unknown;
const translated = try Highlight.translate(a, .markdown, clean);
var litr = std.mem.splitScalar(u8, translated, '\n');
while (litr.next()) |line| {
dom.push(html.element("ln", line, null));
}
dom.push(html.text(translated));
dom = dom.close();
dom = dom.close();
 
 
src/syntax/markdown.zig added: 51, removed: 16, total 35
@@ -9,13 +9,13 @@ pub fn translate(a: Allocator, blob: []const u8) ![]u8 {
var idx: usize = 0;
var backtick: bool = false;
while (idx < blob.len) : (idx += 1) {
switch (blob[idx]) {
'\n' => |c| {
sw: switch (blob[idx]) {
'\n' => {
newline +|= 1;
if (newline % 2 == 0) {
try output.appendSlice("<br>");
}
try output.append(c);
try output.append('\n');
},
'#' => |c| {
if (newline == 0) {
@@ -56,6 +56,19 @@ pub fn translate(a: Allocator, blob: []const u8) ![]u8 {
}
},
'`' => {
if (blob.len > idx + 7) {
if (blob[idx + 1] == '`' and blob[idx + 2] == '`') {
if (std.mem.indexOfPos(u8, blob, idx + 3, "\n```")) |i| {
try output.appendSlice("<div class=\"codeblock\">");
idx += 3;
try output.appendSlice(blob[idx..i]);
try output.appendSlice("\n</div>");
idx = i + 4;
if (idx >= blob.len) break :sw;
continue :sw blob[idx];
}
}
}
if (backtick) {
backtick = false;
try output.appendSlice("</span>");
@@ -136,3 +149,25 @@ test "backtick" {
 
try std.testing.expectEqualStrings(expected, html);
}
 
test "backtick block" {
const a = std.testing.allocator;
{
const blob = "```backtick block\n```";
const expected = "<div class=\"codeblock\">backtick block\n</div>";
 
const html = try translate(a, blob);
defer a.free(html);
 
try std.testing.expectEqualStrings(expected, html);
}
{
const blob = "```backtick```";
const expected = "<span class=\"coderef\"></span><span class=\"coderef\">backtick</span><span class=\"coderef\"></span>";
 
const html = try translate(a, blob);
defer a.free(html);
 
try std.testing.expectEqualStrings(expected, html);
}
}
 
static/main.css added: 51, removed: 16, total 35
@@ -112,7 +112,7 @@ lines {
width: 50px;
}
 
.code-block { background: #333; }
.codeblock { background: #333; }
 
code {
display: inline-block;
@@ -260,6 +260,9 @@ readme {
align-items: baseline;
text-align: left;
}
.codeblock {
white-space: pre
}
}
 
.treelist {
@@ -694,7 +697,7 @@ blob {
height: 1.5em;
padding: 4px 12px;
}
.code-block {
.codeblock {
padding: 4px 12px;
border: 1px gray solid;
border-bottom: 0px;
 
templates/blame.html added: 51, removed: 16, total 35
@@ -9,7 +9,7 @@
<content>
<blob>
<header><Filename></header>
<div class="code-block">
<div class="codeblock">
<code>
<For BlameLines><span class="blame-line">
<span class="blame-header">
 
templates/blob.html added: 51, removed: 16, total 35
@@ -10,7 +10,7 @@
<blob>
<a class="btn" href="/repo/<Repo>/blame/<UriFilename>">blame</a>
<header><Filename></header>
<div class="code-block"><code><For BlobLines>
<div class="codeblock"><code><For BlobLines>
<ln num="<Num type=usize >" id="L<Num type=usize >" href="#L<Num type=usize >"><Line /></ln>
</For></code>
</div>