Skip to content

Commit 485f993

Browse files
committed
Fixed flowchart markers
1 parent 3ea15d7 commit 485f993

File tree

5 files changed

+27
-4
lines changed

5 files changed

+27
-4
lines changed

docs/browser-support.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,19 @@ modern CSS features like [custom properties] and [mask images].
1313

1414
## Supported browsers
1515

16+
``` mermaid
17+
flowchart BT
18+
a2[リレー1] & a3[リレー2] <-- 開放FW --> a4[カルダノネットワーク]
19+
subgraph ide1[プール]
20+
subgraph リレーIP指定FW
21+
a1[BP]
22+
end
23+
a1[BP] <--> a2[リレー1] & a3[リレー2]
24+
end
25+
c1[PC] --> ide1
26+
c1[PC] --> エアギャップ
27+
```
28+
1629
The following table lists all browsers for which Material for MkDocs offers full
1730
support, so it can be assumed that all features work without degradation. If you
1831
find a feature not to be working in a browser in the supported version range,

material/assets/javascripts/bundle.5b261bfc.min.js renamed to material/assets/javascripts/bundle.3900859e.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

material/assets/javascripts/bundle.5b261bfc.min.js.map renamed to material/assets/javascripts/bundle.3900859e.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

material/base.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@
214214
</script>
215215
{% endblock %}
216216
{% block scripts %}
217-
<script src="{{ 'assets/javascripts/bundle.5b261bfc.min.js' | url }}"></script>
217+
<script src="{{ 'assets/javascripts/bundle.3900859e.min.js' | url }}"></script>
218218
{% for path in config["extra_javascript"] %}
219219
<script src="{{ path | url }}"></script>
220220
{% endfor %}

src/assets/javascripts/components/content/code/mermaid/index.css

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,16 @@ marker {
9898
font-family: var(--md-mermaid-font-family);
9999
}
100100

101+
/* Flowchart markers */
102+
#flowchart-circleStart,
103+
#flowchart-circleEnd,
104+
#flowchart-crossStart,
105+
#flowchart-crossEnd,
106+
#flowchart-pointStart,
107+
#flowchart-pointEnd {
108+
stroke: none;
109+
}
110+
101111
/* ----------------------------------------------------------------------------
102112
* Rules: class diagrams
103113
* ------------------------------------------------------------------------- */

0 commit comments

Comments
 (0)