post: GPU-skinned herds — agent_skinned renderer + engine private, builds public

This commit is contained in:
2026-06-14 01:19:46 +01:00
parent f762ad52a3
commit b8c3fc473b
17 changed files with 1259 additions and 185 deletions
+3 -3
View File
@@ -144,11 +144,11 @@ function inline(s) {
s = s.replace(/\*(.+?)\*/g, "<em>$1</em>");
// Inline code
s = s.replace(/`([^`]+)`/g, "<code>$1</code>");
// Links
s = s.replace(/\[([^\]]+)\]\(([^)]+)\)/g, '<a href="$2" style="color: var(--c-accent-l);">$1</a>');
// Em dash
// Em dash / en dash — before links so CSS var(--x) in style attr isn't mangled
s = s.replace(/---/g, "&mdash;");
s = s.replace(/--/g, "&ndash;");
// Links
s = s.replace(/\[([^\]]+)\]\(([^)]+)\)/g, '<a href="$2" style="color: var(--c-accent-l);">$1</a>');
return s;
}