Describe the bug
The auto-generated diagram for the docs has a couple of bugs:
- auto-wrapping distorts paths, making them hard to read
- underscores are confused with markdown italics
To Reproduce
An INTERFACE.yaml file like this:
---
title: geo_boundaries_module
---
flowchart LR
M((geo_boundaries_module))
C2[/"`**automatic**
countries/{dataset}_{country}_{subtype}.parquet
marineregions/eez.parquet
`"/] --> M
M --> O1("`**results**
shapes.parquet
`")
leads to:

Expected behavior
the wrapping can be avoided via configuration
%%{ init: {"themeVariables": { "wrap": "false" },
"flowchart": { "markdownAutoWrap":"false",
"wrappingWidth": "" }
}
}%%
flowchart LR
M((geo_boundaries_module))
C2[/"`**automatic**
countries/{dataset}\_{country}\_{subtype}dsdsdsdsdsdsdsdsdssdsddsdsdsdsdsdsdsdsdsdsdsdsdsdsdsdsdsdsdsdsdsssssssss.parquet
marineregions/eez.parquet
`"/] --> M
M --> O1("`**results**
shapes.parqusdsdsdsdsdsdsdet
`")

The underscores, however, cannot.
I'd say that it's best to avoid generating these diagrams. Using INTERFACE.yaml for reference is good enough.
Describe the bug
The auto-generated diagram for the docs has a couple of bugs:
To Reproduce
An
INTERFACE.yamlfile like this:leads to:
Expected behavior
the wrapping can be avoided via configuration
The underscores, however, cannot.
I'd say that it's best to avoid generating these diagrams. Using
INTERFACE.yamlfor reference is good enough.