Philip-Scott / Notes-up

Markdown notes editor & manager
GNU General Public License v2.0
620 stars 47 forks source link

The image is not displayed in the view tab. #353

Closed bogdasar1985 closed 4 years ago

bogdasar1985 commented 4 years ago

Problem overview.

I try to insert the image into the note using first Markdown syntax and then HTML. None of these options work.

Expected Behavior

I need to see the image on the view tab.

Current Behavior

I see a logo that indicates an image.

Possible Solution

It may be possible to upload images from the Internet.

Steps to Reproduce (for bugs)

  1. Just insert ![logo](https://github.com/bogdasar1985/Conspects/blob/master/Algorithms/Images/Graph.png "Graph") or <img src="https://github.com/bogdasar1985/Conspects/blob/master/Algorithms/Images/Graph.png" alt="Graph"> into note and go to the view tab.

Screenshots of the Problem

In write mode: https://github.com/bogdasar1985/Conspects/blob/master/Bugs(for_Notes_up_dev)/Bug_write.png

In view mode: https://github.com/bogdasar1985/Conspects/blob/master/Bugs(for_Notes_up_dev)/Bug_view.png

Your Environment (for bugs)

Philip-Scott commented 4 years ago

When inserting images from the web, make sure to put the URL for the raw image on the field instead of from a website :)

Use this instead:

![Alt Text](https://github.com/bogdasar1985/Conspects/blob/master/Algorithms/Images/Graph.png?raw=true)

image