🚀 MarkDown Essentials as DaC Format


🎯 Purpose

Markdown is a lightweight markup language used to format plain text documents, allowing for easy readability while still being convertible to HTML and other formats.


🌱 Origin

The name “Markdown” is a pun on “markup language,” referring to its simpler (downsized) syntax that is easy to read & write in plain text. It has been created by John Gruber and released on December 2004.


🧠 Essentials

1️⃣ Important URLs

2️⃣ Headings

H1 - Project Title

# H1 - Project Title

H2 - Section

## H2 - Section

H3 - Subsection

### H3 - Subsection

3️⃣ Emphasis

Bold or Bold

**Bold** or __Bold__  

Bold & Italic

***Bold & Italic***  

Text to Strikethrough

**~~Text to Strikethrough~~**

4️⃣ Lists

Unordered

  • Item 1
  • Item 2
    • Sub-item
- Item 1
- Item 2
  - Sub-item

Ordered

  1. Step 1
  2. Step 2
1. Step 1
2. Step 2

URL to Google

[URL to Google](https://google.com "Go to Google")

Link to local API Doc

Link to Local Image

[Link to local API Doc](./cheat-sheet-DaC_tools.md)

Official NodeJs Logo as Alt Text

![Official NodeJs Logo as Alt Text](https://nodejs.org/static/images/logo.svg)

6️⃣ Code

Inline code example

// JavaScript Example
app.get('/', (req, res) => {
  res.send('Hello World');
});
```javascript
// JavaScript Example
app.get('/', (req, res) => {
  res.send('Hello World');
});
```  

7️⃣ Blockquotes

Design first, code later.

> Design first, code later.

8️⃣ Tables

FeatureFrontendBackend
LanguageHTML/CSS/JSNode.js
FrameworkReactExpress
| Feature   | Frontend    | Backend |
| --------- | ----------  | ------- |
| Language  | HTML/CSS/JS | Node.js |
| Framework | React       | Express |

9️⃣ Horizontal Line


---

🔟 Checklists (for TODOs)

  • Setup Project
  • Write API
  • Deploy
* [x] Setup Project
* [ ] Write API
* [ ] Deploy

All cheat sheets are taken from our Udemy Online Course. Interested? Check out:
All-In-One Full Stack DevOps - From Idea to Cloud