Markdown is a markup language which contain certain symbols to format text, use images and links etc. It is used for writing documents that can be directly converted to HTML webpages by using certain converters, although many editors comes with the facility to directly convert them to HTML pages, e.g. StackEdit
Markup Language Its a language which uses syntax to create documents that are readable both by humans as wells as computers, they differ by programming language in a way that they are understandable by computers not directly by humans.
- Used for various purpose like webpages, presentations, thesis, notes, books etc.
- Portable i.e can be run in any other application and still be understandable
- Platform Independent
To emphasize on any text i.e. to make it bold, we would enclose it within **(double asterisks), until the closing double asterisks are encountered the text will be made bold.
Example BITS Pilani is situated in **Jhunjhunu** district of Rajasthan. This is how it looks-
BITS Pilani is situated in Jhunjhunu district of Rajasthan.
To make any text look italic we would enclose it within __( underscore), until the closing underscores are encountered the text will be made bold.
Example BITS Pilani was established in the _ year 1964_. This is how it looks-
BITS Pilani was established in the year 1964 district of Rajasthan.
We can insert headings in markdown which looks different and appealing then the remaining text highlighting the purpose of the text. Insert number of # according to the heading number you want to insert
Example #BITS Pilani. ##Birla Institute of Technology and Science This is how it looks-
There are two types of links- inline links and reference links.
To insert links, use the following syntax ** [Text to be displayed](Link to the webpage)**
Example To visit Wikipedia, [Click here](www.wikipedia.org) This is how it looks- To visit Wikipedia, Click here
It is used when we put just the reference of the webpage which is to be linked, and that link is provided within the webpage.
Example To search anything I use, [The No.1 Site]Guess. [Guess]: https://www.google.com/ This is how it looks
To search anything I use, The No.1 Site.
Its syntax is almost similar to links syntax.
Example This is a cow ![Alternate text](Link to the image) And for reference images the same syntax of link is used , just we have to place an exclamation mark before the square brackets.
It is used for highlighting certain quotes to make them look different. We have to just place a ">" sign before the text we want to make quote. Example One of the earliest quote we have hears as child was: >"Honesty is the best policy" This is how it looks- One of the earliest quote we have hears as child was:
"Honesty is the best policy"
There are two types of list- unordered list with bullet points, and ordered list with numbering.
List items- * Item1 * Item2 * Item3 This is how it looks-
List items-
- Item1
- Item2
- Item3
List items-
- Item1
- Item2
- Item3
For making a paragraph in Markdown, syntax is similar to HTML
<p>Birla Institute of Technology & Science, Pilani (BITS Pilani) is a private deemed university in Pilani, India.[12] It focuses primarily on higher education and research in engineering and sciences.[13] After expansion to a campus in Dubai, it has become the first international deemed university, spearheading in science, engineering, management and research with 5 established campuses and 15 academic departments.</p>
For creating a horizontal rule, put " *** " i.e. three asterisks in the line wherever u want to insert.
Example
This is BITS Pilani *** One of the best institute in the country. This is how it looks-
This is BITS Pilani
One of the best institute in the country.