Giter VIP home page Giter VIP logo

tomoyukim / vscode-mermaid-editor Goto Github PK

View Code? Open in Web Editor NEW
69.0 6.0 14.0 1.3 MB

Live editor and image creator for mermaid.js in Visual Studio Code

Home Page: https://marketplace.visualstudio.com/items?itemName=tomoyukim.vscode-mermaid-editor

License: MIT License

JavaScript 4.59% TypeScript 95.19% Shell 0.08% Nix 0.14%
javascript vscode-extension typescript vscode mermaid mermaidjs mermaid-editor

vscode-mermaid-editor's Introduction

Mermaid Editor

Build Status

Mermaid Editor is VSCode extension inspired by official mermaid live editor which provides mainly the following features:

  • Live edit mermaid.js diagram file with mermaid.js diagram
  • Generate image file from mermaid.js diagram file with preferred format (png, jpg, webp and svg).
  • Copy image to clipboard directly.
  • Customize configuration for individual mermaid.js diagram by using atrribute which is available in this extension.

Mermaid Editor does not contain syntax highlighting for Mermaid charting language. But don't warry, a great plugin Mermaid Markdown Syntax Highlighting works with Mermaid Editor.

Mermaid Editor is also available on Open VSX Registry for developers who love FLOSS binaries of VSCode.

Mermaid Editor is implemented as 100% local solution mainly using mermaid.js and VSCode SDK. It means Mermaid Editor does NOT require online environment and NOT send your code to any remote server in order to work.

Enjoy!

Usage

This VSCode extension is activated when opening .mmd or .mermaid file. The supported file extensions follows the official guide.

Open live preview

  • Select Mermaid:Preview mermaid from context menu or command palette
  • Click Mermaid:Preview diagram icon at right corner
  • ctrl+alt+[ on .mmd or .mermaid file

Generate image

Generate command is only available when mermaid.js diagram file is opened and live preview is activated.

  • Select Mermaid:Generate image from context menu or command palette
  • Click Mermaid:Generate image icon
  • ctrl+alt+] on .mmd or .mermaid file

Copy image to clipboard

Copy command is only availab e when "Mermaid Editor Preview" is focused.

  • Click Mermaid:Copy image icon
  • ctrl+alt+; on Mermaid Editor Preview

Change scale of live preview

Zoom in/out is supported for live preview.

  • Select Mermaid:Zoom in, Mermaid:Zoom out, Mermaid:Reset zoom, Mermaid:Zoom to specific scale from command palette
  • Click Mermaid:Zoom in, Mermaid:Zoom out icon focusing live preview panel
  • Zoom out: ctrl+alt+-
  • Zoom in: ctrl+alt+=
  • Reset zoom: ctrl+alt+0

Change mermaid.js version without the extension update

Changing mermaid.js integrated in the extension with an another version is supported. The following commands are available on the command palette. This is availabe only online because this feature depends on CDN services as described below.

ATTENTION: This extension does not fully assure to work fine with the other version of mermaid library. Please change it as your own risk.

Command Description
Mermaid:Update mermaid library to the latest Update mermaid.js through cdnjs. This extension can refer to the latest version delivered by cdnjs instead of the integrated one after.
Mermaid:Set an URL to hosted mermaid library on CDN Set an arbitrary URL for mermaid.js hosted on CDNs. Note that https://www.jsdelivr.com and https://cdnjs.com are only supported. The other schemes or domains are not supported.
Mermaid:Reset mermaid library to the default Reset mermaid.js library referred by this extension to the integrated one.
Mermaid:Show current mermaid library setting Show the current mermaid.js library referred by this extension. The output is appeard in mermaid-editor channel of the "OUTPUT" tab. Note that mermaid.js version is also displayed in the status bar if the version is determined.

Attributes

This extension supports attribute to specify preferred configuration for each mermaid.js diagram file. The attribute have to be described in comment of mermaid syntax.

NOTE: The attribute syntax with curly brackets (@config{}, @backgroundColor{}, @outputScale{}) was obsoleted. Use parenthesis (@config(), @backgroundColor(), @outputScale()) instead, please.

@config(path_to_config)

Each mermaid diagram file can be associated with mermaid configuration. With this attribute, .mmd or .mermaid file can read specified configuration. path_to_config have to be described as relative path to the config json file from associated mermaid.js diagram file. If this attribute is not provided, default config file setting up in mermaid-editor.preview.defaultMermaidConfig is applied.

sequenceDiagram
%% @config(./path/to/config.json)
    Alice->>John: Hello John, how are you?

@backgroundColor(color)

Each mermaid diagram file can be associated with preferred background color. With this attribute, .mmd or .mermaid can read specifed background color with CSS style property format.If this attribute is not provided, default background color setting up in mermaid-editor.preview.backgroundColor is applied. The followings are example.

sequenceDiagram
%% @backgroundColor(red)
    Alice->>John: Hello John, how are you?
sequenceDiagram
%% @backgroundColor(#ff0000)
    Alice->>John: Hello John, how are you?
sequenceDiagram
%% @backgroundColor(rgb(255, 0, 0))
    Alice->>John: Hello John, how are you?

@outputScale(scale_factor)

Each mermaid.js diagram file can be associated with preferred output scale. With this attribute, the diagram can be generated with preferred scale factor.If this attribute is not provided, default scale setting up in mermaid-editor.generate.scale is applied. Positive number is only permitted for this attribute. If invalid value is set, default value is used as above. The followings are example.

sequenceDiagram
%% @outputScale(2.5)
    Alice->>John: Hello John, how are you?

Configuration

Settings for look & feel in preview or image generator.

Setting Default Description
mermaid-editor.preview.defaultMermaidConfig Relative path to the default configuration json file for mermaidjs.
mermaid-editor.preview.backgroundColor white Default background color for live preview and generated image.
mermaid-editor.preview.errorOutputOnSave true Show error output console whe saving file if there's error message.
Note: Error output in the console itself is always available regardless of this configuration.
mermaid-editor.generate.type svg Output image file type [svg, png, jpg, webp].
mermaid-editor.generate.outputPath Relative path to the output target directory from project root.
mermaid-editor.generate.useCurrentPath true Use relative output path as same as target mermaid diagram file instead of 'outputPath'.
mermaid-editor.generate.scale 1.0 Scale of the output image. Only positive number (>0) is permitted. Otherwise, 1.0 is used.
mermaid-editor.generate.quality 1.0 Quality of the output image. A number between 0 and 1 to be used when creating images using file formats that support lossy compression like jpeg or webp. Otherwise, ignored.

Credits

This extension uses Feather icon set under CC BY 3.0

vscode-mermaid-editor's People

Contributors

dependabot[bot] avatar jonasbn avatar kajitetsushi avatar rngtng avatar tomoyukim avatar yedidmh avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar

vscode-mermaid-editor's Issues

Node shape is misaligned and larger than the text

I'm using v0.10.0 version of VSCode extension.

When I try to create a graph the node shapes is misaligned how this image can demonstrate:
image

The size of the node shape is larger than necessary too.

I'm using default settings, Linux Ubuntu 20.04 and VSCode 1.54.3

Embedded diagram in svg/png-images.

This is an idea from the vscode-drawio, I think it is a great feature, the following is an example of use

Just for your reference

I think the way to implement this feature may be to store the diagram information in a image file.

Maybe related to these codes


Thank you for bringing such a good plugin to the vscode.

Gitgraph doesn't render

Describe the bug
The follow mermaid diagram code doesn't render i.e. just produces a white screen in the preview

gitGraph
  commit
  commit
  commit
gitGraph
  commit
  commit
  commit

To Reproduce
Steps to reproduce the behavior:
1.Install extension
2. Add file with .mmd extension
3. Add the above code to file
4. Select F1 and then Mermaid: Preview diagram
5. See bank preview window

Expected behavior
Expected git graph to be displayed.

Screenshots
If applicable, add screenshots to help explain your problem.

Desktop (please complete the following information):

  • OS: Windows 10 Pro
  • VSCode version: 1.69.2
  • Extension version: v0.14.0

Additional context

Text is not visible when using a VSCode dark theme

When a dark theme is set for VSCode, the default text color for the mermaid preview is not visible.

Example

sequenceDiagram

    participant Test1;
    participant Test2;

    loop: comment
        Note over Test1: This is a test
    end

screenshot8

It looks like a simple solution would be to explicitly set the default background color for the preview.

PS: I see mermaid-editor.preview.backgroundColor can be set. May be the default should be white.

How to set configs?

Hi, I'm having some trouble setting up configs. All I was trying is to setup the output path for images, and change the type to png, but I can't seem to figure out the correct place/syntax.

diagram.mmd

sequenceDiagram
%% @config{./mmd.json}
    Alice->>John: Hello John, how are you?

mmd.json

{
  "theme": "default",
  "type": "png",
  "mermaid-editor": {
    "generate": {
      "type": "png",
      "outputPath": "./images/"
    }
  },
  "outputPath": "./images/"
}

Cannot generate Gantt chart

The Gantt chart I created can be previewed correctly, both in this VS Code plugin and in other mermaid tools. However, whenever I try to export/generate the graph, it gives the following errors:

Parse error on line 1:
#mermaid-16011334473
^
Expecting 'NEWLINE', 'SPACE', 'GRAPH', got 'BRKT'

Direction in subgraphs

Describe the bug
Direction in subgraphs is not working.
It actually not a bug, but a reference to an older version of mermaid (8.9.2), where this feature is not supported. From version 8.10.2 the feature is supported.

To Reproduce
flowchart LR
subgraph TOP
direction TB
subgraph B1
direction RL
i1 -->f1
end
subgraph B2
direction BT
i2 -->f2
end
end
A --> TOP --> B
B1 --> B2

ER diagram syntax highlighting

Cutting and pasting the ER diagram example from mermaid-js.github.io/mermaid-live-editor results in syntax errors being reported. The live preview diagram is generated correctly however.

The syntax errors appear as follows:

Parse error on line 1:

^
Expecting 'NEWLINE', 'SPACE', 'GRAPH', got 'EOF'

============================

Fontawesome icons not there when generating image

Describe the bug
If you try to use a fontawesome icon like fa:fa-phone, it's displayed in the preview but disappear from generated image.

To Reproduce
Steps to reproduce the behavior:

  1. Create a test.mmd in vscode.
graph LR
test[fa:fa-phone <- Phone]
  1. See that preview display the phone icon
  2. Generate image and see that phone icon is missing.

Expected behavior
Fontawesome icons should be generated as well.

Screenshots
image

Desktop (please complete the following information):

  • OS: Win 10 20 H2
  • VSCode version 1.55.2
  • Extension version 0.11

Live preview is not live if %%{init.....} is used

It appears that the live previewer chokes on the %%{. I think it is not considering it a comment line because the curly bracket is touching the %%.
This stops the previewer from updating.
The preview does work with that syntax though. I just have to close the preview and re-open to get updates.

Letters trimmed when preview zoomed-out

Hi there,

thank you very much for your work, the extension is great!

I'm currently having a problem:
When I zoom-out the graph preview, letters are dissapearing/trimmed; this applies to exporting too.
Pictures attached.
Any ideas on how to fix that?

Thanks a lot,
Thomas

mermaid_normal_zoom

mermaid_zoomed_in

Image quality

Is is possible to adjust the image quality/dpi on jpg, the output images are sometimes really poor.

ER Diagram can't parse attributes

Version 0.10.0

Try with a sample from the docs, like this:

erDiagram
    CAR ||--o{ NAMED-DRIVER : allows
    CAR {
        string registrationNumber
        string make
        string model
    }
    PERSON ||--o{ NAMED-DRIVER : is
    PERSON {
        string firstName
        string lastName
        int age
    }

It doesn't show the diagram, but if I save the file I get this in terminal:

[DigagramParseError]
Parse error on line 3:
...R : allows
    CAR (
        string re
----------------------^
Expecting ':', 'ZERO_OR_ONE', 'ZERO_OR_MORE', 'ONE_OR_MORE', 'ONLY_ONE', got '('

(Yes, there's a typo in the exception name)

mermaid-editor.preview.defaultMermaidConfig restart issue

Describe the bug
It looks like, the plugin ignores the "mermaid-editor.preview.defaultMermaidConfig" setting when restarted. We need to make a small change to the settings file to reload the setting value.

To Reproduce
Steps to reproduce the behavior:

  1. Go to 'settings.json'
  2. Scroll down to 'mermaid-editor.preview.defaultMermaidConfig'
  3. Set the value to point to a mermaid-js.json file. { "theme": "forest"}
  4. Check if its working fine, it should apply the forest theme.
  5. Restart vscode.
  6. Check if the mmd is still rendering with forest theme. it won't.
  7. make a small change to the settings file, save it and change it back to what it should be
  8. Check if its working fine, it should apply the forest theme.

Expected behavior
To persist the config changes.

Screenshots
let me know if you want me to record this.

Desktop (please complete the following information):

  • OS: [e.g. Windows 10]
  • VSCode 1.63.0
  • Extension version: v0.11.4

Additional context
Add any other context about the problem here.

Are diagrams rendered fully offline without 3rd party services?

Hi,

I would like to use this extension at my place of work but I would rather not have sensitive information be uploaded to any external 3rd parties. Does this extension render all the diagrams locally or is the diagram rendered on some remote server and retrieved?

If the rendering is done fully local, you should definitely mention this feature in the readme, I can imagine many developers are facing restrictions on what external / cloud tools they're allowed to use.

Thank you!

Syntax highlighting doesn't seem to work

Hello!

First off, thanks for creating this, the preview is excellent and works really well.

However, I'm having some issues with the syntax highlighting. For most of my diagrams, it highlights the opening sequenceDiagram but very little else. Are there any known issues there?

Add global config.json

Is there a way for global (user or system level) configuration? just like .eslintrc, such as

  • ~/.mermaid/config.json in linux
  • %userprofile%\.mermaid\config.json in windows

it's great to set mermaid-editor.preview.defaultMermaidConfig , but it does not support absolute path. I hope it can.

Fontsize (CSS-Style sheet?)

I would like to increase the fontsize, and i'm new to mermaid...
Is it possible to include a css-style sheet?

Mindmap graphs not working

Describe the bug
Using Mindmaps does not appear to be working.
Copying and pasting the example from https://mermaid-js.github.io/mermaid/#/mindmap gives

[DigagramParseError]
undefined

in the output pane, and no graph is generated, instead a Mermaid error message "Syntax error in graph" is shown in the preview pane.

This same graph works properly at the Mermaid Live editor at https://mermaid.live/

To Reproduce

  1. Open a new .mmd file
  2. Paste in the example text from https://mermaid-js.github.io/mermaid/#/mindmap
  3. Save file
  4. See error

Expected behavior
Graph is displayed properly as at https://mermaid.live/

Screenshots
image

Desktop:

Line break with <br> does not work

With the Mermaid live editor, it works. However, with this plugin, it does not work. When searching within the issues, it should work in version 0.8.1?

`scale` setting doesn't work

Describe the bug
Scaling doesn't work. It always shows a small image, I assume as 1.0.

To Reproduce
I used "mermaid-editor.generate.scale": 2.0.

Expected behavior
An image twice as large.

Screenshots
n/a

Desktop (please complete the following information):

  • OS: ubuntu
  • VSCode version 1.60.0
  • Extension version 0.11.2

Additional context
n/a

onLanguage:mermaid doesn't seem to be working

Describe the bug
The extension isn't activated on mermaid language detection.

To Reproduce
Steps to reproduce the behavior:

  1. Create a new untitled file in VSCode, do not save it
  2. Write some mermaid code
graph TD
  X[Hello]
  1. Make sure that the correct language is detected
  2. Open the Command Pallet and search for "mermaid" -> nothing appears
  3. Look at the top right of the document window -> no preview icon is visible

Expected behavior
Previewing should work on untitled files.

Desktop (please complete the following information):

  • OS: Windows 10
  • VSCode 1.7
  • Extension version 0.15.0

Additional context
bpruitt-goddard.mermaid-markdown-syntax-highlighting 1.4.0 is also enabled

Unable to set theme to other than `default`

Hello,

It seems that I'm unable to set the theme to other than default from the mermaid config json.

- config.json
{
    "theme": "dark"
}
- mmd
sequenceDiagram
    %% @config{./config.json}
    %% @backgroundColor{black}
    .
    .
    .

The background is black, but the diagram is still using the default theme. The generated SVG also still uses the default theme.

Allow user to provide `mermaidPath`?

I see from the package.json we are still using 9.4.0.
Is there an easy way to decouple the deployment of the extension with the version of mermaid that comes with the extension? With how the extension functions currently, you'll need to release a new version every time the mermaid lot release something new.

For instance, using v10 features is giving me syntax errors and I don't see an easy way for me to choose my mermaid version. I love the extension but this is a sure way to make sure it ends up out of date with mermaid.

Preserve scroll position between reloads

When previewing a long graph, the scroll position is retested every time a change is made to the code and the preview is reloaded. It would be nice to preserve the scroll position so users don't need to scroll manually every time.

Upgrade mermaid version to 8.13.9

Hi,

I see that dependabot has an open PR to upgrade Mermaid to 8.13.8. How far away is the next version with this update? My diagrams renders ok in Mermaid Live (currently at v version 8.13.8), but vscode-mermaid-editor only reports syntax errors.

Text overflows box in svg and png

When generating the image from the mmd file, the svg is oversize and in both png and svg the text overflows the boxes in the themes default and natural

Copy image shortcut like Excalidraw extension

It would be very convenient if the Mermaid Editor supported a copy shortcut which generate an image and copied it into the clipboard. For many workflows this is faster and more convenient than saving a file to disk then copying it or uploading it elsewhere.

A great example of how copying images can be more convenient is when drawing images in VSCode and then wanting to post them in GitHub issue/PR comments. Doing so with the extension as is requires saving the file somewhere, then uploading it to GitHub in the comment. However, if the extension supported copying the image directly to clipboard, the user could paste directly into a GitHub comment box and GitHub will upload the image from the clipboard into the comment.

The Excalidraw extension is another diagram drawing extension for VSCode that offers this feature, and it makes getting images out of the extension very convenient. I use the workflow described above with it, and I think this extension would benefit from it.

Mermaid:Generate image

No export to image in VSC

  • Preview is working
  • then when trying Mermaid:Generate image
    error:
Command failed: mkdir -p c:\Users\tomaz\Documents\NetBeansProjects\GitLab_Arnes\portal-hub\arnes-guest-account\predal-wc\frontend
A subdirectory or file -p already exists.
Error occurred while processing: -p.
A subdirectory or file c:\Users\tomaz\Documents\NetBeansProjects\GitLab_Arnes\portal-hub\arnes-guest-account\predal-wc\frontend already exists.
Error occurred while processing: c:\Users\tomaz\Documents\NetBeansProjects\GitLab_Arnes\portal-hub\arnes-guest-account\predal-wc\frontend.

ENOENT: no such file or directory, open 

Generating image fails with permissions error when using GitHub Repositories extension

Describe the bug
When opening a repository using GitHub Repositories plugin, where the code is not checked out to a repo, attempting to generate an image from a diagram results in this error:

Unable to write file '/leighmcculloch/diagrams/merging-shared-iteration-number-simple.svg' (Unknown (FileSystemError): Error: EROFS: read-only file system, mkdir '/leighmcculloch')

To Reproduce
Steps to reproduce the behavior:

  1. Install GitHub Repositories: https://marketplace.visualstudio.com/items?itemName=GitHub.remotehub
  2. Install Markdown Editor: https://marketplace.visualstudio.com/items?itemName=tomoyukim.vscode-mermaid-editor
  3. Create a diagram, save it as an .mmd file.
  4. Run the command Mermaid:Generate image

Expected behavior
Image would be generated in some form.

Screenshots
N/A

Desktop (please complete the following information):

  • OS: macOS 11.6
  • VSCode version: v1.60.2
  • Extension version: v0.11.4

Additional context
N/A

[Question] Dark mode / theme

I read the docs and a number of other issues, but can't find relevant info.

What must I do to enable dark mode?

I did this:

  • added file path/to/config.json which contains: { "theme": "dark" }
  • added to my settings: "mermaid-editor.preview.defaultMermaidConfig": "path/to/config.json"

That shows a class diagram with black classes, but on white background. Not really a "dark mode" theme.

What is the correct way to do this?

Sequence Diagram new syntaxes not working

Describe the bug
Referencing #69 as template for the same concerns, but for a different type of diagram.

Using a new Sequence Diagram syntax that was introduced in mermaid v9.4.0 will break the preview.
Copying and pasting the example from https://mermaid.js.org/syntax/sequenceDiagram.html#grouping-box gives

[DigagramParseError]
undefined

I use this extension at work. Would be great to benefit by shipping the extension with a newer version of the library that supports the syntax.

To Reproduce
Steps to reproduce the behavior:

Expected behavior
Graph is displayed properly as at https://mermaid.js.org/syntax/sequenceDiagram.html#grouping-box.

Note: Showing expected behavior https://mermaid.live/ is currently not possible. It's still running on v9.3.0 of the library.

Screenshots
sequenceDiagram.error.png

Desktop (please complete the following information):
Doesn't really matter which OS and VSCode version. I have an older PC running macOS Mojave 10.14.6 and VS

  • OS: macOS Ventura 13.2.1 (same issue with older PC on macOS Mojave 10.14.6)
  • VSCode version: 1.75.1 (same issue with older PC on 1.74.2)
  • Extension version: [email protected]

Dynamic Exported Image Size

Right now the exported image size is set via mermaid-editor.generate.width and mermaid-editor.generate.height settings. But that is global to all mermaid documents. Small diagrams typically end up as small images in the top-left corner of the PNG.

Can you please add some form of dynamic sizing of the exported images? Ideally this would involve a simple scale-factor setting that, when set to 1, would render text as the correct font size. Exporting would then automatically calculate the bounds of the image based on that scale (perhaps we also need a dpi setting for image rendering).

Output tab auto open

Hi,

when I edit a file and there's an error, the output tab showing the error will automatically be opened on every keystroke.

I'm pretty sure this is caused by this plugin, as I normally don't see that behavior in any other circumstances.
For me, that's pretty annoying and that's probably not intended anyways so that should either be fixed or configurable I guess? :)

Generated pictures from diagrams cut off

Not sure what changed exactly but suddenly the plugin is producing cut off images of diagrams as can be seen below. Without a change this was working ~2 weeks back.

Test .mmd file content (which rendered correctly in preview)
sequenceDiagram %% @backgroundColor{white} %% @outputScale{2.5} participant br as Browser participant fr as frontend participant ap as api participant ps as PostgreSQL participant pr as Prometheus participant ot as OpenTracing br->>fr: access Website activate fr fr-->>br: render Website fr->>ap: REST calls activate ap ap->>ps: query/update data activate ps ps-->>ap: return result deactivate ps opt In case of changed data ap-->>fr: update ap-xpr: dispatch logs ap-xot: dispatch tracing deactivate ap end fr-->>br: render update deactivate fr

generates this cut off picture:
test

Version:

  • VSCode: 1.55.1
  • vscode-mermaid-editor: 0.10.1

gitGraph doesn't support more than 8 branches

Describe the bug
gitGraph doesn't generate lines for branches when more than 8 branches

To Reproduce

gitGraph
    commit
    branch aaa
        commit
    branch sss
        commit
    branch ddd
        commit
    branch fff
        commit
    branch ggg
        commit
    branch hhh
        commit
    branch jjj
        commit
    branch kkk
        commit
    branch lll
        commit

Expected behavior
image

Screenshots / Actual behavior
image

Desktop (please complete the following information):

  • OS: Windows 10
  • VSCode version: 1.72.2
  • Extension version: 0.15.0

Could not generate images from .mmd files including non-ascii characters.

An example mermaid file:

sequenceDiagram
    participant x as Aさん
    participant y as Bさん

    x ->> y: プレゼントを渡す

The preview works:
image

But not the generator:

Parse error on line 1:
#mermaid-16076197498
^
Expecting 'NEWLINE', 'SPACE', 'GRAPH', got 'BRKT'

============================

Changing all Japanese words to ascii letters makes the generator work properly.

Adopt VS Code's 'asWebviewUri' API

Hi, I maintain VS Code's Webview API

Issue

Our telemetry suggests that your extension uses webviews and may be loading resources in these webviews using hardcoded vscode-resource: URIs. These URIs have some important limitations and don't work properly when VS Code is run in a browser. We are also making changes in the desktop version of VS Code that may cause these URIs to not work properly in future versions of VS Code.

While we are making our best effort to continue support existing webview extensions that use vscode-resource: URIs on desktop versions of VS Code, we will not able to fully support all uses cases.

Fix

To ensure that your extension continues to work in as many environments as possible—including on web and remotely—please:

These APIs shipped around 2 years ago so they should be available in all modern versions of VS Code. You can find additional information about the issue here: microsoft/vscode#97962

Let me know if you have any questions about this change

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.