Markdown image not working
This is not chat markdown. I am working on a program that uses flask to display markdown files. When I add an image (under the directory images/decision_tree.png) and I add to my markdown 
, it won't show the image. What is wrong?
@isaiah08 Hi,
What about this:-
.../images/decision_tree.png
Try and tell me the results below.
Thanks!
Hope this helps
hmm... This does not seem to be working either. Can you give me the full line?
@PattanAhmed
@isaiah08 Please link your Repl and say in which path is that thing available?
Thanks!
https://repl.it/@isaiah08/tutorialed#python/flask/lesson1.mdWhat directory would you like? @PattanAhmed
@isaiah08 Hmm...
I never saw this line of code in your Repl.
can you say where it is available?
or if that doesn't work, you can just open the image in a new tab, and use the url of that as the image path
../images/decision_tree.png
Try to use ../
to go back a directory, for example:
images
picture
src
code
in the src/code
file, if you want to access the picture, you have to do:
../images/picture
Not sure what your saying, can you give me an example? @DynamicSquid
It has to be an absolute path.
What do you mean? @Coder100
@isaiah08 oh wait as in your index.md
?
can i see your repl?
https://repl.it/@isaiah08/tutorialed#python/machinelearning/lesson1.md
Search for 
@Coder100
ok, so basically that's because you are doing the relative path, you have to go back to the root directory to access, the image folder. Your new image url has to be: ../images/decision_tree.png
@isaiah08
So i just need to create a new folder to put the images folder in? @Coder100
just change your path to what I said and it will work @isaiah08
It is still not working, can you give me the full line? @Coder100

@isaiah08
I did that, and it still won't work. @Coder100
found out why, You are inside two folders.
@isaiah08
Ok, so it is the amount of folders the markdown is in, not the image is in? @Coder100
STILL not working! @Coder100
you did it wrong, you are supposed to have 
, 3 dots is invalid. two dots goes back to the parent folder remember? @isaiah08
I know, i was trying PattanAhmed's suggestion. I changed it back to your's now. @Coder100
awesome @isaiah08
does it work? @isaiah08
Did you ever figure out your issue.... I have the same one... same nonsense
No, I have not. Do you know a solution? @Wesam_Issawi_Is