Fixed flowchart markers

This commit is contained in:
squidfunk 2022-03-06 12:09:04 +01:00
parent 3ea15d7379
commit 485f993d91
5 changed files with 27 additions and 4 deletions

View File

@ -13,6 +13,19 @@ modern CSS features like [custom properties] and [mask images].
## Supported browsers ## Supported browsers
``` mermaid
flowchart BT
a2[リレー1] & a3[リレー2] <-- 開放FW --> a4[カルダノネットワーク]
subgraph ide1[プール]
subgraph リレーIP指定FW
a1[BP]
end
a1[BP] <--> a2[リレー1] & a3[リレー2]
end
c1[PC] --> ide1
c1[PC] --> エアギャップ
```
The following table lists all browsers for which Material for MkDocs offers full The following table lists all browsers for which Material for MkDocs offers full
support, so it can be assumed that all features work without degradation. If you support, so it can be assumed that all features work without degradation. If you
find a feature not to be working in a browser in the supported version range, find a feature not to be working in a browser in the supported version range,

View File

@ -214,7 +214,7 @@
</script> </script>
{% endblock %} {% endblock %}
{% block scripts %} {% block scripts %}
<script src="{{ 'assets/javascripts/bundle.5b261bfc.min.js' | url }}"></script> <script src="{{ 'assets/javascripts/bundle.3900859e.min.js' | url }}"></script>
{% for path in config["extra_javascript"] %} {% for path in config["extra_javascript"] %}
<script src="{{ path | url }}"></script> <script src="{{ path | url }}"></script>
{% endfor %} {% endfor %}

View File

@ -98,6 +98,16 @@ marker {
font-family: var(--md-mermaid-font-family); font-family: var(--md-mermaid-font-family);
} }
/* Flowchart markers */
#flowchart-circleStart,
#flowchart-circleEnd,
#flowchart-crossStart,
#flowchart-crossEnd,
#flowchart-pointStart,
#flowchart-pointEnd {
stroke: none;
}
/* ---------------------------------------------------------------------------- /* ----------------------------------------------------------------------------
* Rules: class diagrams * Rules: class diagrams
* ------------------------------------------------------------------------- */ * ------------------------------------------------------------------------- */