Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/discourse/discourse-graphviz
Adds the Viz.js library to discourse
https://github.com/discourse/discourse-graphviz
discourse discourse-plugin
Last synced: 1 day ago
JSON representation
Adds the Viz.js library to discourse
- Host: GitHub
- URL: https://github.com/discourse/discourse-graphviz
- Owner: discourse
- License: other
- Created: 2018-09-19T12:32:03.000Z (about 6 years ago)
- Default Branch: main
- Last Pushed: 2024-10-28T19:37:19.000Z (11 days ago)
- Last Synced: 2024-10-28T20:32:40.680Z (11 days ago)
- Topics: discourse, discourse-plugin
- Language: Ruby
- Homepage:
- Size: 2.17 MB
- Stars: 9
- Watchers: 22
- Forks: 5
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.md
Awesome Lists containing this project
- awesome-starred - discourse/discourse-graphviz - Adds the Viz.js library to discourse (others)
README
## discourse-graphviz
https://meta.discourse.org/t/graphviz-plugin/97554/
Adds [Graphviz](https://www.graphviz.org) capability to discourse.
Topic discussing the plugin itself can be found here: https://meta.discourse.org/t/graphviz-plugin/97554
### Usage
See the [Graphviz](https://www.graphviz.org/documentation/) site for documentation and examples.
To use with a discourse post, wrap the chart defintion in `graphviz` tags and define engine (if not defined, it will default to `dot`) like this:```
[graphviz engine=neato]
graph {
a -- b;
b -- c;
a -- c;
d -- c;
e -- c;
e -- a;
}
[/graphviz]
```