Introduction
Markdown is a lightweight markup language that is used for creating and formatting text using a plain-text editor. Markdown is the fastest and easiest way to format plain text using special markdown characters like hashtags, dashes, underscores, etc.
We can also create code blocks, headers, lists, and other things with the help of markdown. Markdown is the best way to explain and describe the working flow of the project.
The GitHub projects or while creating a GitHub repository need to create a Readme file which basically uses a markdown to write a markdown is not only use for writing a readme file but the most popular blogging platforms provide features for users to use markdown for writing a blog. It's very important to know how to use markdown as a developer or as a technical person.
1.Headings: Headings are used to declare the title of the document, there are six heading tags are available in the markdown from #h1, #h2, #h3,#h4,#h5 and #h6.
Hashnode
2.Bold Text: Formatting text is pretty easy in markdown if you want to make text bold then simply use inside text and for italic inside text and if you want to make text bold with italic then used inside text and it's done.
Hashnode with bold text
Hashnode with bold & italic text
3.Blockquote: Blockquote is used to show an essential section of the document or file.
Hashnode is an awesome platform
4.Strikethrough: It is used to show mistaken text in the document or process which is not important to follow and to use strikethrough used hashnode
5.Lists: Lists are used to show steps or instructions to follow step by step and lists are two types ordered lists and unordered lists easy-to-use lists in markdown. Example of an ordered list
output
- Item 1
- Item 2
- Item 3
6.Unordered List: There are multiple ways to create an unordered list you can use a dash(-), an asterisk(*), and (+) to create an unordered list.
Example
Output
. Item 1
. Item 2
. Item 3
7.Links with Title:
Image with Link
8.Code Blocks:
Code blocks are used to create code snippets it will help the user to understand the code as compared to explaining code with only text to create code blocks using backticks(
)for single-line code used ( singe line
code
code
here ).
Create Code blocks
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>HTML 5 Boilerplate</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<script src="index.js"></script>
</body>
</html>
Code block with Syntax highlighting
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>HTML 5 Boilerplate</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<script src="index.js"></script>
</body>
</html>
you need to specify the language you want to use as per above example I specified the html language you can choose as per your requirements.
9.Tables
Tables are used to describe data in form of rows and columns and how to create them in markdown let's see with the example is given below
Note: At least 3 dashes separate each header cell.
10.Task Lists
By keeping such a list, you make sure that your tasks are written down all in one place so you don't forget anything important.
That’s all about markdown there are much more things available that you can do with markdown to create better documentation and Readme files.
Hey, I'm Ganesh 🖐
I write articles on web development and share valuable resources which might help you as a developer or beginner.
follow me for more content
Ganesh_Patilif this article add values to you then you can buy coffee for me!
You can also connect with me on Twitter
to get more content related to web development
thank you for the support! ✌
Top comments (1)
interesting article Ganesh, i learned alot.