lini 0.3.1

A small, human-readable language for plain-text diagrams that compiles to clean SVG
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// Class rules — reusable visual bundles applied with .name.

.thin { stroke: #444; stroke-width: 1; }
.bold { font-weight: bold; }
.power { stroke: red; stroke-width: 2; }
.warn { stroke: orange; }
.ghost { opacity: 0.3; }

a |box| .thin "thin"
b |box| .bold "bold"
c |box| .power "power"
d |box| .warn "warn"
e |box| .ghost "ghost"