Adding an image to the project description in google code

I want to update the background image in google code projects. I searched for their wiki, it talks about pointing the image to the outside world. There we can still upload the image to google code and provide a link?

+6
source share
2 answers

I got a solution. First you need to upload the image to the "Download" area. After that, enter the image URL.

<img src="http://yourgoogleproject.googlecode.com/files/name of your image.PNG" alt="Logo"/> You must paste the above code into apostrophe (') and end with an apostrophe and you can paste this into project description tab of the project summary tab (I just added here in my case)

The downloaded file will automatically go to the "files" folder of your project.

+9
source

This answer is no longer correct. Google Code removed the download option in May 2013 due to misuse. You can, as they suggest, transfer files to Google Drive and link them to them, which is great for uploading projects, but for elements such as images on the wiki pages or the project home page, I recommend checking the images in your source repository and links on them. For example, you use the mercurial repository, and your files are marked with documents / images, and then:

 http://yourproject.googlecode.com/hg/yourproject/docs/images/logo.png 

must work.

+4
source

Source: https://habr.com/ru/post/894268/


All Articles