Is there some unwritten rule that you are not allowed to show images of Python code on Github websites? I tried to upload images in this manner, however, it doesn't work. Images are png and source linked appropriately.
Asked
Active
Viewed 82 times
-2
-
How would "they" know it's an image of code? (I mean, wow – Stack Overflow would be interested!) – Jongware Jan 02 '18 at 21:47
-
2"It doesn't work" What happens? – Patrick Haugh Jan 02 '18 at 21:48
-
PatrickHaugh is right. [We need information to help](https://stackoverflow.com/help/mcve) – Xantium Jan 02 '18 at 21:49
-
I realized how asinine the thought was before I asked it, however, the file location was the same as the others and obviously the only difference was that it was python. – E.E. Jan 03 '18 at 00:28
1 Answers
2
In your repository here, at index.html you reference the image as imgs/pythonCode.png
whereas it is named imgs/pythonCode.PNG
with capitals. I would recommend renaming the .PNG
into .png
. I confirmed this by changing the source in dev tools
This is also the case for the two images on your python.html
page.

Paul Roub
- 36,322
- 27
- 84
- 93

dangee1705
- 3,445
- 1
- 21
- 40
-
1Actually, yes, it did. Unclear as to why those Python images needed to be capitalized since the others did not. Nevertheless, I appreciate the assistance. – E.E. Jan 03 '18 at 00:30