WiCS x DAGDC
- .md = a "markdown" text file -> allows special formatting and some html/css capabilities.
- Resides at the root directory of the project (not inside any folders!)
- Helps the audience understand how to install and use your project
- Good practice: make it the first file you create in a new project!
- Description & purpose of project
- Technologies used in the project
- List of key features
- How to download / run / use project
- File structure
- How to collaborate with you (if applicable)
- License information (if any)
And more!
1 hashtag: # Heading 1
OR text followed by at least 1 = symbol on next line:
Heading 1
=
2 hashtags: ## Heading 2
OR text followed by at least 1 - symbol on next line:
Heading 2
-
3 hashtags: ### Heading 3
Created by separating text with a blank line.
Paragraph 1.
Paragraph 2.
Bold with 2 asterisks on both sides of text: **text here**
Italicize with 1 underscore OR asterisk on both sides of text: _text here_ or *text here*
Code snippet with 1 backtick (`) on both sides of text
Code block with 3 backticks (```) before and after a block of text, on its own lines. Can also add code language to color text.
``` python
print('hi')
```- Bulleted list with dash (-) or asterisk (*) followed by space, then text:
- text hereor* text here
- Numbered list with number followed by period, space, then text.
Use a greater than symbol (>) followed by a space, then text: > text here
This is a quote.
Put text in square brackets [], followed by the link in parentheses (): [text here](link url here)
2 ways to add an image: standard markdown and raw html.
- Standard markdown:
- Simpler & more readable.
- Keeps original size, and offers limited control.
- Raw HTML:
<img alt="alt text" src="image link" width="..." height="..." align="..."/>- Everything other than src is optional.
- Provides more control over display details, like size & alignment, but sacrifices readability.
Add a horizontal rule (a.k.a. divider) by using 3 dashes with a blank line before and after:
Section 1
---
Section 2
Divider pictured below:
Made with love by WiCS & DAGDC. 💜❤️