**Is your feature request related to a problem? Please describe.** When working with large diagrams, they quickly become too small to read properly. **Describe the solution you'd like** Support something like - github interface for mermaid blocks where some buttons apear on the upper right side to zoom in/out or open in full screen - mermaid live ui that allows zoom in/out and opening in another tab in full screen, which also allows zomming with scrollwheel and moving with mouse. **Additional context** ```mermaid classDiagram Animal <|-- Duck Animal <|-- Fish Animal <|-- Zebra Animal : +int age Animal : +String gender Animal: +isMammal() Animal: +mate() class Duck{ +String beakColor +swim() +quack() } class Fish{ -int sizeInFeet -canEat() } class Zebra{ +bool is_wild +run() } ``` <img width="971" height="701" alt="Image" src="https://github.com/user-attachments/assets/0121dc37-5ccf-4d9f-b26e-7bc69529a329" />
Is your feature request related to a problem? Please describe.
When working with large diagrams, they quickly become too small to read properly.
Describe the solution you'd like
Support something like
Additional context
classDiagram Animal <|-- Duck Animal <|-- Fish Animal <|-- Zebra Animal : +int age Animal : +String gender Animal: +isMammal() Animal: +mate() class Duck{ +String beakColor +swim() +quack() } class Fish{ -int sizeInFeet -canEat() } class Zebra{ +bool is_wild +run() }