-
-
Notifications
You must be signed in to change notification settings - Fork 6.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4825 from chadfawcett/bug/1871_fix_duplicate_mark…
…er_ids Give markers unique id's per graph
- Loading branch information
Showing
5 changed files
with
152 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import { urlSnapshotTest } from '../../helpers/util.ts'; | ||
|
||
describe('Marker Unique IDs Per Diagram', () => { | ||
it('should render a blue arrow tip in second digram', () => { | ||
urlSnapshotTest('http://localhost:9000/marker_unique_id.html', { | ||
logLevel: 1, | ||
flowchart: { htmlLabels: false }, | ||
}); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
<html> | ||
<head> </head> | ||
<body> | ||
<h1>Example</h1> | ||
<pre class="mermaid"> | ||
%%{init:{"theme":"base", "themeVariables": {"lineColor":"red"}}}%% | ||
flowchart LR | ||
subgraph red | ||
A --> B | ||
end | ||
</pre> | ||
<pre class="mermaid"> | ||
%%{init:{"theme":"base", "themeVariables": {"lineColor":"blue"}}}%% | ||
flowchart LR | ||
subgraph black | ||
A --> B | ||
end | ||
</pre> | ||
<pre class="mermaid"> | ||
--- | ||
config: | ||
theme: base | ||
themeVariables: | ||
lineColor: yellow | ||
--- | ||
flowchart LR | ||
subgraph red | ||
A --> B | ||
end | ||
</pre> | ||
<pre class="mermaid"> | ||
--- | ||
config: | ||
theme: base | ||
themeVariables: | ||
lineColor: green | ||
--- | ||
flowchart LR | ||
subgraph black | ||
A --> B | ||
end | ||
</pre> | ||
<script type="module"> | ||
import mermaid from './mermaid.esm.mjs'; | ||
mermaid.initialize({ startOnLoad: true, logLevel: 0 }); | ||
|
||
if (window.Cypress) { | ||
window.rendered = true; | ||
} | ||
</script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.