Github Markup Language.#2
Conversation
Added JavaScript code snippet to day-1.md.
There was a problem hiding this comment.
Pull request overview
Adds a Day 1 Markdown exercise document demonstrating common GitHub-flavored Markdown features (headings, task lists, images, lists, and code blocks).
Changes:
- Introduces
day-1.mdwith a daily learning template (planning + review sections). - Adds examples of task lists, ordered/unordered lists, images, and fenced code blocks (bash + JS).
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
You can also share your feedback on Copilot code review. Take the survey.
| <img alt="Cloudy morning" src="https://octodex.github.com/images/cloud.jpg" width="100" height="500" align="right"> | ||
|
|
||
| Task List | ||
| - [ ] Check out the [github blog](https://github.blog/) for topic ideas. |
There was a problem hiding this comment.
The link text uses the wrong capitalization for the product name. Consider changing "github blog" to "GitHub Blog" for consistency with GitHub branding.
| - [ ] Check out the [github blog](https://github.blog/) for topic ideas. | |
| - [ ] Check out the [GitHub Blog](https://github.blog/) for topic ideas. |
| Unordered List | ||
| - Item 1 | ||
| - Item 2 | ||
| - hellooo |
There was a problem hiding this comment.
"hellooo" looks like an unintended typo in the list item; consider correcting it to "hello" (or a more descriptive item) to keep the example clean.
| - hellooo | |
| - hello |
| @@ -0,0 +1,31 @@ | |||
| # Daily Learning | |||
| ## Morning Planning | |||
| <img alt="Cloudy morning" src="https://octodex.github.com/images/cloud.jpg" width="100" height="500" align="right"> | |||
There was a problem hiding this comment.
The first image sets both width and a very large fixed height (500px), which will likely distort the aspect ratio and create excessive vertical whitespace. Consider removing the height attribute (let it scale naturally) or using proportional dimensions consistent with the other image.
| <img alt="Cloudy morning" src="https://octodex.github.com/images/cloud.jpg" width="100" height="500" align="right"> | |
| <img alt="Cloudy morning" src="https://octodex.github.com/images/cloud.jpg" width="100" align="right"> |
No description provided.