Eduardo Aguilera Olascoaga

Results 4 issues of Eduardo Aguilera Olascoaga

Hi! I want to contribute to the development, but I see no guide, rules or whatever. Maybe a roadmap? A trello/asana board? I can help in this things but I...

To recreate: ```elixir alias Graphvix.{Graph, Node} Graph.new(:test) Node.new(label: "\"test\"") Graph.save ``` Will generate a dot file like this: ``` digraph G { node_1 [label=""test""]; } ``` The problem is that...

I have a use case where I need to save the graph files (dot, png, svg, etc...) inside a specific folder. I suggest using `Application.get_env` so the user can add...

After creating 1..n nodes, clearing a graph and making a new one with new nodes, the node ids aren't reseted. ## Replicate alias Graphvix.{Graph, Node, Edge} ```elixir Graph.new(:test) Node.new(label: "1")...