--- author: '' category: '' date: 2013/09/27 14:33:58 description: Niola now supports graphviz. link: '' priority: '' slug: lunchtime-nikola-feature-graphviz tags: nikola, python title: 'Lunchtime Nikola Feature: graphviz' type: text updated: 2013/09/27 14:33:58 url_type: '' --- Since we are in the process of adding a `plugin repo `_ for Nikola, I wanted to add a `simple plugin `_ there so that we can show how it works. So here it is. You use this:: .. graphviz:: digraph foo { "Idea" -> "tap tap tap" -> "Code"; } And you get (assuming graphviz is installed, and this plugin is installed, etc.) this: .. TEASER_END .. graphviz:: digraph foo { "Idea" -> "tap tap tap" -> "Code"; } It's still very rudimentary, but it aims to be compatible with `Sphinx's implementation `_ even though the details of how it's done vary greatly.