Recently, there’s been lots of speak about markdown as an alternate method to format textual content.
I determined to perform a little analysis and see what all of the discuss was about and I was really fairly glad of what I discovered; markdown is easy markup language that makes it simpler for writers to put in writing good content material for the net with out having to fret concerning the HTML code of their articles.
The good thing about utilizing markdown is which you could write considerably cleaner articles and it additionally makes it simpler for anybody studying your articles to have the ability to learn it, with out really opening the web page in a browser.
HOW TO WRITE MARKDOWN
Writing markdown is the best factor you may think about:
Bold and italic textual content
To create italic textual content you simply must encompass the textual content by one star:
This is *italic textual content.*
Which will produce:
This is italic textual content.
And to create daring textual content you insert two stars:
And that is **daring textual content.**
Which will produce:
And that is daring textual content.
Headings
To create headings in markdown all you should is add a hash signal earlier than your content material. One hash signal is the equal of an <h1>, two means an <h2> and so forth till <h6>:
# that is an heading 1
## that is an heading 2
### that is an heading 3
#### that is an heading 4
##### that is an heading 5
###### that is an heading 6
Paragraphs
Writing paragraphs is so simple as writing your textual content, and if you wish to add one other one other paragraph you simply must press enter and within the subsequent line a brand new paragraph might be added:
One paragraph
And right here is one other paragraph
Is the equal of:
<p>One paragraph</p>
<p>And right here is one other paragraph</p>
Blockquotes
To create blockquotes you might want to add a angled bracket (>) earlier than the textual content you need, like so:
> Somebody mentioned this quote some years in the past
Which is identical as:
<blockquote>
<p>Somebody mentioned this quote some years in the past</p>
<blockquote>
Links
Creating hyperlinks could be very simlar to HTML, you first place the textual content you need the consumer to see inside sq. brackets after which place the hyperlink location inside a pair of parentheses:
[Webdesigner Depot](http://www.webdesignerdepot.com)
Which is the equal of:
<a href=”http://www.webdesignerdepot.com”>Webdesigner Depot</a>
Images
Images use the identical primary syntax as hyperlinks, however in photos the textual content you place in sq. brackets would be the alt textual content and also you additionally want to put an exclamation mark in the beginning to make markdown know that what you’re writing is a picture and never a hyperlink:

Is the identical as:
<img src=”http://instance.com/myimage.jpg” alt=”My picture” />
Unordered Lists
To create a easy unordered checklist you solely have to create the listing objects, you don’t want to fret about opening and shutting the listing. All it’s essential do is so as to add a line break, then add an asterisk earlier than every merchandise:
* One record merchandise
* Another checklist merchandise
* And a 3rd one
Is the equal of:
<ul>
<li>One checklist merchandise</li>
<li>Another listing merchandise</li>
<li>And a 3rd one</li>
</ul>
Ordered Lists
Like the unordered lists you solely have to concern your self with the precise listing gadgets, there’s no opening or closing. To use an ordered checklist you simply want to make use of numbers as an alternative of asterisks:
1 One listing merchandise
2 Another record merchandise
3 And a 3rd one
Is the equal of:
<ol>
<li>One checklist merchandise</li>
<li>Another listing merchandise</li>
<li>And a 3rd one</li>
</ol>
CONCLUSION
Markdown is a very good backup when you write articles for the net and you aren’t a savvy HTML developer, it actually facilitates the creation of content material for the net. There is even aWordPress Plugin that permits markdown in posts and feedback and routinely converts it to HTML.
Have you learnt to make use of markdown? What advantages have you ever discovered over different types of markup? Let us know within the feedback.
Leave a Comment