mirror of
https://github.com/discourse/discourse.git
synced 2026-08-04 10:23:17 -05:00
[avoid-leaking-state-in-ember-objects](https://github.com/discourse/discourse/commit/438132fca245c9a9030b078cd2b23863f8c75069), [no-observers](https://github.com/discourse/discourse/commit/3161c1c77e4aac223055cb7c29605cb22689c30c), [no-tracked-properties-from-args](https://github.com/discourse/discourse/commit/5b99b3e0ad2499fb56309abc5945eb536ebb18c5), [no-jquery](https://github.com/discourse/discourse/commit/532afdf129a5ecbbef3e16bd055025a14030b6c8), [route-path-style](https://github.com/discourse/discourse/pull/37448/commits/0609d5169540239744498e430ca908cda2c6bf29), [routes-segments-snake-case](https://github.com/discourse/discourse/pull/37448/commits/65b7c91baecad619ccc2e0c6eaa7993d99879bfc)
discourse-graphviz
https://meta.discourse.org/t/graphviz-plugin/97554/
Adds Graphviz capability to discourse.
Topic discussing the plugin itself can be found here: https://meta.discourse.org/t/graphviz-plugin/97554
Usage
See the Graphviz site for documentation and examples.
To use with a discourse post, wrap the chart definition 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]