Skip to content

Commit

Permalink
chore(viz): support more attributes
Browse files Browse the repository at this point in the history
  • Loading branch information
moul committed Aug 26, 2019
1 parent 9cfaba2 commit 9ab1188
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion viz/graphviz.go
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ func attrsGeneric(a graphman.Attrs, attrs map[string]string, opts *Opts) {
attrs[string(graphviz.Comment)] = ""
for k, v := range ac {
switch k {
case "rankdir", "shape", "style":
case "rankdir", "shape", "style", "size", "layout", "overlap", "splines", "pack", "start", "sep":
attrs[k] = v.(string)
default:
if vStr := fmt.Sprintf("%v", v); vStr != "" {
Expand Down

0 comments on commit 9ab1188

Please sign in to comment.