Markdown Syntax
Markdowon file is a file to illustrate structured information visually concisely. Markdown files have .md extension.Heading
# heading 1
## heading 2
### heading 3

Bold & Italic
**Bold Text**
*Italic Text*

List
- Unordered list:
- Item 1 - Item 2 - Item 3
- Ordered list:
1. First Item 2. Second item 3. Third item

Links & Images
[Image Processing](ImgProc.html)


Code Blocks
- Inline code:
`print("Hello, World!")`
- Multi-line code:
```Source.cpp #include <iostream> int main() { std::cout << "hello" << std::endl; return (0); } ```

Blockquotes
> He knows that he does not know anything.

Horizontal Line
Attention
---
This course is not mandatory, rather optional for the advanced.
