Skip to content

Commit

Permalink
Fixed flowchart markers
Browse files Browse the repository at this point in the history
  • Loading branch information
squidfunk committed Mar 6, 2022
1 parent 3ea15d7 commit 485f993
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 4 deletions.
13 changes: 13 additions & 0 deletions docs/browser-support.md
Expand Up @@ -13,6 +13,19 @@ modern CSS features like [custom properties] and [mask images].

## 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
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,
Expand Down

Large diffs are not rendered by default.

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion material/base.html
Expand Up @@ -214,7 +214,7 @@
</script>
{% endblock %}
{% 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"] %}
<script src="{{ path | url }}"></script>
{% endfor %}
Expand Down
10 changes: 10 additions & 0 deletions src/assets/javascripts/components/content/code/mermaid/index.css
Expand Up @@ -98,6 +98,16 @@ marker {
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
* ------------------------------------------------------------------------- */
Expand Down

0 comments on commit 485f993

Please sign in to comment.