Este é um blog onde anoto dicas técnicas de informática e computação.
This is a blog where I write down technical tips on computing.
Be aware that some resources used in this blog may use cookies to collect information used by Ads and Google Analytics. I do not monetize from this website, neither require or use personal information.
Friday, September 3, 2021
Create diagram images from text commands
https://plantuml.com/ + https://pandoc.org/ (other similar tools)
https://graphviz.org/doc/info/command.html
Ex: echo 'digraph { a -> b }' | dot -Tsvg > output.svg
echo 'digraph { a -> b }' | dot -Tsvg -Gfontcolor=red -Glabel="My favorite letters"
No comments:
Post a Comment