madskristensen / MarkdownEditor

A Visual Studio extension
Other
405 stars 92 forks source link

Mermaid Sequence diagrams are rendered very small #172

Open xkzt0 opened 5 years ago

xkzt0 commented 5 years ago

Installed product versions

Description

Mermaid Sequence diagrams are rendered very small

screenshot_28

dannymyers commented 5 years ago

Same problem in VS2019.

dannymyers commented 5 years ago

@xkzt0 I figured out how to solve this using this post.

Add the following to the html file mentioned in that post:

        var config = {
            ...snip...
            sequenceDiagram: {
                htmlLabels: false,
                useMaxWidth: false
            },
        };