Skip to content

Releases: nao1215/markdown

v0.13.0

24 Feb 09:04

Choose a tag to compare

v0.12.0

24 Feb 05:04

Choose a tag to compare

  • Add Mermaid Class Diagram support #83 (nao1215)
  • Add Mermaid User Journey Diagram support #84 (nao1215)
  • Add Mermaid Git Graph Diagram support #85 (nao1215)
  • Add Mermaid Mindmap Diagram support #86 (nao1215)

v0.9.0

27 Nov 12:06

Choose a tag to compare

What's Changed

Full Changelog: v0.8.3...v0.9.0

Version 0.8.2

27 Sep 11:06

Choose a tag to compare

v0.8.2 (2025-09-27)

  • Add TableOfContents method with customizable depth levels #64 (nao1215)

v0.8.1 (2025-01-25)

  • Bug fixes and improvements

v0.8.0

15 Jun 04:24
eb0a4ab

Choose a tag to compare

What's Changed

Full Changelog: v0.7.1...v0.8.0

v0.7.0: Support Architecture Diagrams

18 Dec 11:09
35441a6

Choose a tag to compare

What's new

The mermaid provides a feature to visualize infrastructure architecture as a beta version, and that feature has been supported.

Syntax is here.

The output image is shown below.

## Architecture Diagram
```mermaid
architecture-beta
    service left_disk(disk)[Disk]
    service top_disk(disk)[Disk]
    service bottom_disk(disk)[Disk]
    service top_gateway(internet)[Gateway]
    service bottom_gateway(internet)[Gateway]
    junction junctionCenter
    junction junctionRight

    left_disk:R -- L:junctionCenter
    top_disk:B -- T:junctionCenter
    bottom_disk:T -- B:junctionCenter
    junctionCenter:R -- L:junctionRight
    top_gateway:B -- T:junctionRight
    bottom_gateway:T -- B:junctionRight
```

image

What's Changed

Full Changelog: v0.6.0...v0.7.0