Markdown cheat sheet for beginners

Markdown cheat sheet for beginners

ยท

2 min read

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

image.png

Bold

<!-- Bold -->

**Bold**

__Bold__

image.png

Italicized text

<!-- Italicized text -->

*italicized text*

_italicized text_

image.png

Strikethrough

<!-- Strikethrough  -->

~~999~~

image.png

Paragraphs

<!-- Paragraphs -->

This is a Paragraph

image.png

Blockquote

<!-- Blockquote -->

> blockquote

image.png

Ordered List

<!-- Ordered List -->

1. First item
2. Second item
3. Third item

image.png

Unordered List

<!-- Unordered List -->

- First item
- Second item
- Third item

image.png


### Code

<!-- Code -->

`Printf(" I Write code")`

image.png

<!-- Link -->

[Link](https://www.example.com)

image.png

Image

<!-- Image -->

![LCO logo](/LCO%20logo%20.png)

image.png

Table

<!-- Table -->

| Syntax | Description |
| ----------- | ----------- |
| Header | Title |
| Paragraph | Text |

image.png

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.

ย