mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-10-15 12:09:44 +02:00
feat(flowchart): implement double circle node
The implementation uses two circles, inside each other. A double circle node is opend with `()(` and closed with `)()`.
This commit is contained in:
@@ -131,6 +131,9 @@ export const addVertices = function (vert, g, svgId) {
|
||||
case 'group':
|
||||
_shape = 'rect';
|
||||
break;
|
||||
case 'doublecircle':
|
||||
_shape = 'doublecircle';
|
||||
break;
|
||||
default:
|
||||
_shape = 'rect';
|
||||
}
|
||||
|
Reference in New Issue
Block a user