https://github.com/zipcodecore/markdown101
make you some useful markdown
https://github.com/zipcodecore/markdown101
Last synced: 3 months ago
JSON representation
make you some useful markdown
- Host: GitHub
- URL: https://github.com/zipcodecore/markdown101
- Owner: ZipCodeCore
- License: mit
- Created: 2025-02-06T15:42:55.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2025-04-20T20:10:15.000Z (8 months ago)
- Last Synced: 2025-04-20T21:23:58.743Z (8 months ago)
- Size: 5.86 KB
- Stars: 0
- Watchers: 2
- Forks: 10
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Markdown101
make you some useful markdown
Be sure to **Fork** this repo and **clone** your copy to your machine.
_This is your first "Investigate&Report" lab. You will do some research on a topic, write a summary, update your forked copy of the repo._
## What is Markdown?
do some googling to learn what is markdown. write brief paragraph on what you found.
Put the paragraph in the same file as your poem.
## create a markdown file
named `poem.md` with the following content:
```markdown
### All poems
- are thought-provoking
- make you think
- AIs are weird
- Poe's poems _rock!_
# The Raven
Once upon a midnight dreary, while I pondered, weak and weary,
...
```
and add a few more lines to the poem. Be creative.
Be sure to add your name to the file as well as author.
style points matter!
Be sure to save to github. (and submit in the classroom)
```bash
git add .
git commit -m "My poem - finished"
git push
```