-2

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.

https://eclecticexistential.github.io/

E.E.
  • 24
  • 1
  • 6

1 Answers1

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

screen shot of website

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
  • 1
    Actually, 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