mirror of
https://github.com/squidfunk/mkdocs-material.git
synced 2024-06-14 11:52:32 +03:00
Fixed flowchart markers
This commit is contained in:
parent
3ea15d7379
commit
485f993d91
@ -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,
|
||||||
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -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 %}
|
||||||
|
@ -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
|
||||||
* ------------------------------------------------------------------------- */
|
* ------------------------------------------------------------------------- */
|
||||||
|
Loading…
Reference in New Issue
Block a user