An open API service indexing awesome lists of open source software.

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

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
```