by leonim on 1/12/22, 5:07 PM with 12 comments
by paulsmith on 1/12/22, 6:44 PM
It's a great little diagram language that's quite capable, and I think of it like a modern web upgrade to Brian Kernighan's PIC.
by fabiospampinato on 1/12/22, 6:14 PM
by electroly on 1/12/22, 8:58 PM
by danshearer on 1/13/22, 9:40 AM
Here is my earliest Pikchr effort: https://lumosql.org/src/not-forking (click to see source.)
Pikchr diagrams are crisp and precise with zero configuration. Mermaid diagrams are difficult to make render as nicely as the screenshots show (https://mermaid-js.github.io ) and easier to confuse with ambiguous syntax.
With the addition of 5 lines Lua, Pandoc now handles Pikchr in Markdown documents: https://groups.google.com/g/pandoc-discuss/c/zZSspnHHsg0/m/m...
by OJFord on 1/12/22, 7:42 PM
Odd choice, usually that's how you'd show the (possibly syntax-highlighted) code as-is, not execute/render it in situ.
E.g. what if I want a document that says 'this pikchr code generates this'? I'd expect to write something like:
```pikchr
arrow 200% "whatever"
```
renders:
$pikchr
arrow 200% "whatever"
$
(Or some other syntax) not the code block twice, once with some kind of escaping.by srvmshr on 1/13/22, 4:50 PM
by otherflavors on 1/12/22, 7:18 PM