Markdown Language
What is Markdown Language?
It is a way of formatting text. the usefulness of the markdown language is it is portable, it ie use everywhere, platform independent and many more.
Okay Let’s start to learn the syntaxes.
Following is the sample markdown document and the preview of the document.
Headings
There are 6 types of heading are available on markdown language and they can be produced using # mark as follows.
Bold and Italic styling on text
Using markup language we can highlight words using either bold or italic and it is so simple to use using “_” or “*” symbols as in the following example. You can use this styles for any text, heading or links.
Lists
Numbered lists and bullet lists can be included in documents using markup language and the syntax is simple. For the Numbered lists you have to add the number and a dot and for the bullet lists have to add a dash mark(-) and a space as in the following example.
Coding examples
The coding pieces can be included in to the document using special syntaxes for single line and multiline comments as follows.
Quotes
The special quotation can be added to the document using the “>” symbol.
Tables
To add tables first you have to add the table head dividing columns using “|” symbols and after that you have to add | — — — | to indicate per column to indicate that as a table. Following example is more clear.
Links
To indicate links there are three ways to do it in markdown language.
- Add immediately after the link name
[Link name](link address)
- Add in a different place using the link name
[Link name][//]: #
[Link name]: <link address>
- Add in a different place using a reference name
[Link name][reference name][//]: #
[reference name]: <link address>
Following is an example for all three above methods.
With above example basics of the markdown language is covered. Hopefully this is helpful.
If you have found this helpful please hit that 👏 and share it on social media :)