Basics of Steem (Part 12) : Markdown Styling (8-12)
INTRO
In Markdown series I am sharing some common markdown techniques with you. In 5 tutorials, I shall share about 30 important and basic techniques of markdown which are very essential in making your blog beautiful looking to your readers. Today I gonna share following techniques-
- Quote
- Highlight
- Ordered List
- Unordered List
- Table
So, Let’s get started
-
STYLE 08: QUOTE
Sometimes we share direct message of any person or from books. In that case, we are quoting the original message of someone. So, here that case, we have to show that message under quotation mark.
We should type
>Here's to the crazy ones. The misfits. The rebels. The troublemakers. The round pegs in the square holes. The ones who see things differently. They're not fond of rules. And they have no respect for the status quo. You can quote them, disagree with them, glorify or vilify them. About the only thing you can't do is ignore them. Because they change things. They push the human race forward. And while some may see them as the crazy ones, we see genius. Because the people who are crazy enough to think they can change the world, are the ones who do.
This is one my favourite words by Rob Siltanen
It will be shown as below-
Here's to the crazy ones. The misfits. The rebels. The troublemakers. The round pegs in the square holes. The ones who see things differently. They're not fond of rules. And they have no respect for the status quo. You can quote them, disagree with them, glorify or vilify them. About the only thing you can't do is ignore them. Because they change things. They push the human race forward. And while some may see them as the crazy ones, we see genius. Because the people who are crazy enough to think they can change the world, are the ones who do.
This is one my favourite words by Rob Siltanen
STYLE 09: Highlight
If we want to highlight any part of our writing, we can easily do so by following technique.
We should type
`Tron Fan Club`
It will be shown as below-
Tron Fan Club
STYLE 10: Ordered List
To make a list in order (sequentially) we can use the following markdown code-
We should type
Our Community Team is -
1. Founder-@rme
1. Admin-@tron-fan-club
1. Admin-@blacks
1. Executive Mod-@veigo
1. Mod-@engrsayful
1. Mod-@sagor1233
1. Mod-@labib2000
It will be shown as below-
- Founder-@rme
- Admin-@tron-fan-club
- Admin-@blacks
- Executive Mod-@veigo
- Mod-@engrsayful
- Mod-@sagor1233
- Mod-@labib2000
STYLE 11: Unordered List
To make a list in random order we can use the following markdown code-
We should type
Our Community Moderators are-
- @veigo
- @engrsayful
- @sagor1233
- @labib2000
It will be shown as below-
STYLE 12: Table
To make a table, we must select number of columns and rows first then we can make table by following code.
We should type
| First Column | Second Column | Third Column |
| --- | ---| ---|
| First Row 1 | First Row 2 | First Row 3 |
| Second Row 1 | Second Row 2 | Second Row 3 |
It will be shown as below-
First Column | Second Column | Third Column |
---|---|---|
First Row 1 | First Row 2 | First Row 3 |
Second Row 1 | Second Row 2 | Second Row 3 |
CONCLUSION
Sometimes a markdown style can be done by more than one ways. Here I am showing simplest method so that you can just apply these codes white writing steemit post. To be html coding expert you can try those codes at your convenience. Here, main objective is to educate our newbies. Thanks.
Click to Join our Discord Server
Thank you @engrsayful for this detailed post on the markdowns on steemit.
It is very necessary that we get familiar with the use of markdown, it will make our work look very neat and attractive
This is a great post on markdown style, You've made the post well details that even newbies can easily comprehend.
Thank you for sharing