Markdown Language

A small notes on markdown language

Headings

Heading are defined with # tag.

# very very big content
## very big content
### big content
#### content
##### slighltly small
###### small content
####### small content

Decoration

Texts can be decorated like italic and bold . To make a text italic surround it with _ and to make a text bold surround it by ** .

_I am italic_
I am **bold**

Linking text is done by [link text](link url)

[search](www.google.com)
[click me](www.click-me.com)

Image

Inserting image is also same like link but it starts with a ! .

![alt text](image link)

![dharshan's image](www.asdf.com/dharshan.jpg)

Listing

Listing is done by * and followed by text. Similarly nested lists are prepared by proper indent of * in new line.

* List item one
* List item two
* list item three

* Main list one
 * sub list one
 * sub list two
 * sub list three
* Main list two
 * sub list one
 * sub list two
 

Next/New line

New lines are added by a blank line or two (empty space) at the end of the line.

This is the line

and this is in next line


This is my new line.. (spaces are ..)
this is my next line

Last updated