# VSCode -- insert local image in Jupyter Markdown?

**URL:** https://discourse.julialang.org/t/vscode-insert-local-image-in-jupyter-markdown/95373
**Category:** VS Code
**Created:** [March 1, 2023, 9:57am UTC](https://discourse.julialang.org/t/vscode-insert-local-image-in-jupyter-markdown/95373 "2023-03-01T09:57:02Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![BLI](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/bli/32/37206_2.png) [@BLI](https://discourse.julialang.org/u/BLI)
#### Post date: [March 1, 2023, 9:57am UTC](https://discourse.julialang.org/t/vscode-insert-local-image-in-jupyter-markdown/95373/1 "2023-03-01T09:57:03Z")

</div>

I’m trying to insert images in markdown sections of a Jupyter notebook in the VSCode editor. This used to work when I opened the file in a browser. Here is my statement:

```julia
<img src="../figs/WaveNet-1.png" width=400px height=400px>

```

I found a comment on the internet that referred specifically to VSCode and inserting images in markdown, which stated that this was a problem in the past, but had now been fixed. The claim is from 2020…

Anyone knows the status/what I do wrong?

---

<div class="post-metadata">

### Author: ![OlivierMpl](https://avatars.discourse-cdn.com/v4/letter/o/3ec8ea/32.png) [@OlivierMpl](https://discourse.julialang.org/u/OlivierMpl)
#### Post date: [March 5, 2023, 12:38pm UTC](https://discourse.julialang.org/t/vscode-insert-local-image-in-jupyter-markdown/95373/2 "2023-03-05T12:38:42Z")

</div>

I think, the closure tag is missing:

```julia
<img src="../figs/WaveNet-1.png" width=400px height=400px />

```

---

<div class="post-metadata">

### Author: ![BLI](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/bli/32/37206_2.png) [@BLI](https://discourse.julialang.org/u/BLI)
#### Post date: [March 5, 2023, 1:39pm UTC](https://discourse.julialang.org/t/vscode-insert-local-image-in-jupyter-markdown/95373/3 "2023-03-05T13:39:08Z")

</div>

It used to work in the past (ik.e., with `IJulia`) with simply `>` as closure.

But I tried to insert `/>` as closure. Didn’t help, so that is not the problem.
