webappdevelp / hexo-filter-mermaid-diagrams

mermaid diagrams for hexo
86 stars 27 forks source link

add lt escape #7

Open zhmin opened 4 years ago

zhmin commented 4 years ago

if there is < in content when using classDiagram, it will not work. For example

classDiagram
      Animal <|-- Duck
      Animal <|-- Fish

so we must add < escape, it will work.

 classDiagram
      Animal &lt|-- Duck
      Animal &lt|-- Zebra