Skip to content

Graphviz tooltips are rendered inconsistently from dot to ojs #3612

@cscheid

Description

@cscheid

Minimal repro:

---
title: "test graphviz"
---

```{ojs}
dot`graph G {
    a [tooltip="Tooltip for a"]
    b [tooltip="Tooltip for b"]
    c [tooltip="Tooltip for c"]
    d [tooltip="Tooltip for d"]
    a -- b;
    b -- c;
    c -- d;
    d -- a;
}`
```

```{dot}
graph G {
    a [tooltip="Tooltip for a"]
    b [tooltip="Tooltip for b"]
    c [tooltip="Tooltip for c"]
    d [tooltip="Tooltip for d"]
    a -- b;
    b -- c;
    c -- d;
    d -- a;
}
```

Metadata

Metadata

Assignees

Labels

enhancementNew feature or requestojs-engineIssues with the ojs engine

Type

No type

Projects

No projects

Relationships

None yet

Development

No branches or pull requests

Issue actions