I try to setup mermaid in a Jekyll page. In Jekyll I am using the theme Just the Docs.
Basically I followed this post to add mermaid in my page template. And it results in:
Diagram I used is:
<div class="mermaid">
graph TD
A[Client] -->|tcp_123| B(Load Balancer)
B -->|tcp_456| C[Server1]
B -->|tcp_456| D[Server2]
</div>
I also tried with ```mermaid
but that simply does not render a diagram at all. Additionally, I tried other versions of Mermaid and other examples from mermaid webpage without success.
What is wrong with my setup here?