GitHub.com uses markdown extensively within its ecosystem for documentation, readme files, as well as allowing for issues to be written using markdown. You should add a README file to your repository to tell other people why your project is useful, what they can do with your project, and how they can use it.
If you put your README file in your repository’s root directory (in our case, “Project-#”), GitHub will recognize and automatically surface your README to repository visitors. Go ahead, check ours out.
For every homework assignment you submit, you will also write a short report in markdown. This report should discuss a number of things every week:
Let’s begin by creating your own README.md for Project 1.
# My First README.md
/web-dev-hw/project-1/
repositoty (not any deeper).Excellent! Finish this first README by completing the {TODO:}
You should try using a simple markdown cheat sheet, which will tell you what symbols you need to use to specify structure and syntax. A google search will return a number of useful results. However, I would suggest you start with the GitHub cheat sheet and Mastering Markdown by GitHub.
Complete your Project 1 README by discussing your experience with the class and its contents and technologies. Was this a difficult process? Are you excited, or overwhelmed?
You need to include these instances:
README.md
is located in Project-1, and my screenshot is in my Project-1 images folder. In order to create a relative link, I need to tell the system to stay in the current directory (/project-1
) before pathing down into my images folder to retrieve my screenshot. Therefore, my relative URL is: ./images/screenshot-1.png
. Altogether in Markdown, the code is ![Screenshot Of my Directory](./images/screenshot-1.png)
.