HTML vs Markdown

Before We proceed to the code I just want to explain a little bit about the HTML and Markdown in Steemit. Because I know some of you confuse about the difference between the two.
So, HTML (Hypertext Markup Language) is the set of markup symbols or codes inserted in a file intended for display on a World Wide Web browser page.
All HTML is valid Markdown. If youβre stuck, not able to format your content as you would like (for example using tables), you can always use plain HTML instead of Markdown.
While Markdown is a text-to-HTML conversion tool for web writers. Markdown allows you to write using an easy-to-read, easy-to-write plain text format, then convert it to structurally valid XHTML (or HTML).
Markdown is not a replacement for HTML, or even close to itβ¦The idea for Markdown is to make it easy to read, write, and edit prose. - John Gruber
HTML tags add lots of in-line noise. They make a document hard to read. For people unfamiliar with HTML, it could be impossible. Reading a Markdown document should make plain sense to anyone.
Hereβs an example of the difference:
1. Headers :
Markdown
βCode :
ββββββ# h1
ββββββ
## h2
ββββββ
### h3
βOutput :
ββββh1
βββββh2
ββββββh3
HTML
βCode :
ββββββ<h1> h1 </h1>
ββββββ
<h2> h2 </h2>
ββββββ
<h3> h3 </h3>
βOutput :
ββββh1
βββββh2
ββββββh3
2. Italics :
Markdown
βCode :
*italic*
βOutput :
ββββββitalic
HTML
βCode :
ββββββ<i> italic </i>
βOutput :
ββββββitalic
3. Bold :
Markdown
βCode :
__bold__
βOutput :
ββββββ bold
HTML
βCode :
ββββββ<b> bold </b>
βOutput :
ββββββbold
3. Lists :
Markdown
βCode :
ββββββ* unordered
ββββββ* unordered
ββββββ
1. ordered
ββββββ2. ordered
βOutput :
- unordered
- unordered
- ordered
- ordered
HTML
βCode :
ββββββ<ul>ββββββ
βββββββ<li class="new">unordered</li>
βββββββ<li class="new">unordered</li>
ββββββ</ul>ββββββ<ol>ββββββ
βββββββ<li class="new">ordered</li>
βββββββ<li class="new">ordered</li>
ββββββ</ol>βOutput :
- unordered
- unordered
- ordered
- ordered
4. Images :
Markdown
βCode :
Direct Image link : https://cdn.steemitimages.com/DQmeaC9H7qcgKC7CVfRPG26VBe5Baoasth8DHWbHwByEFmU/33744616_2076889862594494_5752343445783969792_n.jpg
βOutput :
HTML
βCode :
βOutput :
4. Links :
Markdown
βCode :
[Image Source](https://cdn.steemitimages.com/DQmeaC9H7qcgKC7CVfRPG26VBe5Baoasth8DHWbHwByEFmU/33744616_2076889862594494_5752343445783969792_n.jpg)
βOutput :
ββββββImage Source
HTML
βCode :
βOutput :
ββββββImage Source
πThank you for reading!π
Please... follow me and resteem this post to help more newbies here in Steemit


