MARKDOWN
Markdown file is a file that describes the purpose of the repository and gives hints on what the code does, how to compile/use it, etc. The . md extension stands for Markdown, which is a type of file that is both readable in plain text but can also be easily converted to HTML to display special elements.
Basic Syntax
Heading
<!-- Heading -->
# Heading
## Heading
### Heading
#### Heading
##### Heading
###### Heading
Bold
<!-- Bold -->
**Bold**
__Bold__
Italicized text
<!-- Italicized text -->
*italicized text*
_italicized text_
Strikethrough
<!-- Strikethrough -->
~~999~~
Paragraphs
<!-- Paragraphs -->
This is a Paragraph
Blockquote
<!-- Blockquote -->
> blockquote
Ordered List
<!-- Ordered List -->
1. First item
2. Second item
3. Third item
Unordered List
<!-- Unordered List -->
- First item
- Second item
- Third item
### Code
<!-- Code -->
`Printf(" I Write code")`
Link
<!-- Link -->
[Link](https://www.example.com)
Image
<!-- Image -->
![LCO logo](/LCO%20logo%20.png)
Table
<!-- Table -->
| Syntax | Description |
| ----------- | ----------- |
| Header | Title |
| Paragraph | Text |
Conclusion
In this tutorial, we have seen how easy it is to work with Markdown files and use what we could give when using Markdown to write a blog and Readme files.
ย