My Personal Choice of Formatting Techniques

Hello Hiveians!

Okay, no one's really asking, but I guess it's time to share my choice of formatting techniques that has been a product of years of trial and error. That might sound exaggerated, but I think it's necessary to provide context as to how I arrived at my current blog format. This might change in the future depending on what I perceive to be good for my posts.

Before I go to my choice of formatting techniques, let me just share some posts that are very helpful in providing the basic codes of formatting. Everything else are just combinations of those codes. It's best to learn the basic first before the complex ones, but hey, you can just copy and then paste the code and you're good to go. You just have to be very meticulous in choosing the code that would be great for your blog. Of course, you can stick to no formatting, but that would be bland and boring for me. Why not experiment on something that could potentially make your post more attractive? Anyway, here are some posts that I'm talking about:

  1. Markdown Cheatsheet
  2. Steemit Markdown Basics for Beginners
  3. Tub Cat's Advice - Formatting Tips and Tricks

I am sorry if it links you back to the old chain. That's still some valuable information right there.

Why would you go through a lot of hassle to format your post? Well, the answer to that is on the readability of your post and the extraction of information by your readers. If you want to be basic, you can stick with the default format, but if you want to improve the readability of your post, you should learn these stuff. At the end of the day, it's your choice.

The reason why these formatting techniques exist is for emphasis, and ease of finding and extracting information. Bad formatting can sometimes lead your audience to lose their interest in your post.

Alright, let's start with my choices of formatting techniques. Take note that I frequently use them and these are combinations to form one structure. Let's start with typographic alignments or text alignments.

Typographic Alignments


Text alignments can be flush left, flush right, justified, or centered depending on different uses and choices. Flush left is the normal text for languages that are read from left to right and a default format of web pages. Flush right is usually used for languages that are read from right to left. Text justification is to align texts both left and right and are usually used in formal documents. Centered is used for headlines, songs, and poems.

Justification

I now personally choose justified texts as they look neat for me. It's just a personal choice as it looks like a magazine-type format. You can still choose to have the default flush left format as there's nothing wrong with that. There's actually an advantage when you use the default format especially when the columns are too narrow and you use long words too often. Using text justification in those situations will lead to too much white spaces because of loose spaces between words, causing a disruption in the flow of reading. Since I still choose justified texts, there are cases when I paraphrase or choose a shorter word in order to eliminate too much white spaces.

Here's the text justification in code:

<div class="text-justify">
It's just a matter of preference. There's no standard rule that you should follow. It's just a matter of choosing the code that suits your idea of what's appealing.
</div>


Here's what it would look like:

It's just a matter of preference. There's no standard rule that you should follow. It's just a matter of choosing the code that suits your idea of what's appealing.

Centering

Centered texts are aligned at the center and I find it annoying when used in normal texts. It has certain uses so I don't use it in texts unless necessary. However, I use the center code in photos especially for portrait type, stand alone photos. So, I'll set that as an example here.

Here's what centering looks like in code:

<center>![_DSF0985.jpg](https://files.peakd.com/file/peakd-hive/ybanezkim26/JtKvRYOi-_DSF0985.jpg)


That would normally look fine, but I tend to remove everything except the link to the photo once uploaded. All that exclamation mark, name of the photo, and parentheses would not show up in the preview, but I find it unnecessary and would cause a problem later on. Erase one part of those and everything will be messed up. To be safe, I remove them entirely.

Here's the final centering code:

<center>https://files.peakd.com/file/peakd-hive/ybanezkim26/JtKvRYOi-_DSF0985.jpg


Here's what it would look like:

Note: Photo is just for illustration.

That would look okay because the photo fits well with the entirety of the screen, but for photos that are narrow and long, automatic left alignment would trigger my OCD self so centering them would calm me down. Yeah, I know I'm weird.

Now that we're done with the overall look of my blog, let's go to the details.

Headlines

If you have followed my travel blogs, you might have noticed that after my introduction and some other stuff I talk about, just before the main topic, I put a headline to signify the start of the topic. I just find it fancy and it's just for aesthetics. It's usually the name of the place and some catchy monikers and stuff.

Here's what it would look like in code:

-----
<center><b>CANCALANOG FALLS IN ALEGRIA, CEBU</b>center><center><sub><b>That Magical Blue Water Hole in Middle of the Jungle</b>sub></center>

-----


Final look:

CANCALANOG FALLS IN ALEGRIA, CEBU
That Magical Blue Water Hole in Middle of the Jungle


Actually, it was @legendarryll who used this first. I just adopted it because it looked awesome in a travel blog. Oh! Before I forget, please don't forget to add a space before the last divider or else, the spaces between the divider and the words would not be equal. Or just copy-paste that code as is. Trust me, I experimented on that because my OCD self was triggered before.

Let's have some photo attachment formats next.

Pull Left and Pull Right

Pull left and pull right are not just exclusive for photos. They can also be used for texts to separate the reading screen into two columns. They work well with multilingual posts and translations.

You can use pull left or pull right alone or you can use them together. I usually use them together.

Adding Two Photos Side by Side

This works well if you want to compare two photos. Here's the code:

<div class="pull-left">

https://files.peakd.com/file/peakd-hive/ybanezkim26/80KXLbt7-2019_0224_14004300.jpg
</div>
<div class="pull-right">

https://files.peakd.com/file/peakd-hive/ybanezkim26/07ZtekDn-2019_0224_14004000.jpg
</div>

-----


Here's the final look:


There are a lot of things to remember here to achieve that photo attachment. First, you must remove the photo details and the only the link must remain. If not, that will show up in the preview. You can try doing it to see for yourself. Second, there must be a space between the pull left or right code and the link of your photo. It's not detectable in PeakD, but it's observable in hive.blog. Without that space, there will be an imbalance in spaces before and after the photo. I'm a fan of using spaces to let the elements of my blog breathe. You can try to compare with and without space and tell me what you observe. Third and last, I added a divider after the codes for spacing. Without the divider, there will be no space between your photos and its consequent text.

Adding Links

Adding links to your blog has its own benefits. You can actually advertise your other posts by linking them to your current post. If you're writing a synthesis of something or making a STEM blog, adding links to your sources means that you have done your research on the topic that you're writing. It increases your credibility as a writer as it shows you're not making things up. In my case, I'm usually doing a travel series so adding the previous parts of the series would provide my readers some context of what I'm talking about.

There are two ways of adding links to your post. One is specific only for default format, while the other is a more general code.

Here's the code for adding links under the default format:

<b>[Markdown Cheatsheet](https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet)


That is not applicable when you're using text justification or within any div class code.

I have a way of adding links to my previous blog. I just find it fancy so I used it. This is still using the pull-left and pull-right code.

Here's the code for the links to my posts:

-----

<div class="pull-left">

https://files.peakd.com/file/peakd-hive/ybanezkim26/uJLzC782-2019_0224_14261900.jpg
</div>
<div class="pull-right">
<center><sub><b><a href="https://peakd.com/hive-174578/@ybanezkim26/definitely-cebu-9-lambug-beach-badian-cebu">Definitely Cebu #9: Lambug Beach, Badian, Cebu
</div>

-----


Here's what it looks like:


Take note that you have to use "a href" instead of braces and parentheses in order for this to work. I personally choose this code for links to my posts because it gives the reader an idea of what's in store in that link. Adding a photo, specially the thumbnail photo, would entice the reader to check out that post. I'm not sure if it works. 😂

If you have read my posts, please comment below if that works. I need some affirmation.

Headings and Sub-Headings

Adding headings and sub-headings in your post provides structure and emphasis to your topic. It is also said that it improves the SEO ranking of your post.

Here's the code:

<h1>Headings</h1>
<h2>Headings</h2>
<h3>Headings</h3>
<h4>Headings</h4>
<h5>Headings</h5>
<h6>Headings</h5>


Here's what it looks like:

Headings


Headings


Headings


Headings


Headings

Headings

The number ranges from 1 to 6 which signifies how big your heading can be. I personally choose h4 to h6 because I found h1 to h3 to be too large.

This is to give you an idea that there's a lot of things going on before I can upload a post. There are actually other formatting techniques out there, but I rarely use them. Tables, columns, and blockqoutes are some of them, but I won't include them here. Again, you can stick to the basic format or you can follow my format. Just remember to be very keen in your post since one wrong code could mess up your whole post. Whatever your choice of formatting techniques is, always remember that the quality of your content still precedes all of these.

I hope that this will help especially to the newbies who don't have prior blogging experience.

Lastly.

About the Author

This is found at the bottom of my blog. In almost all of the travel blogs I've read, there's an "about the author" thing that is sort of a signature and it tells something, well obviously, about the author of the post.

Here's the code of my signature:

-----

<div class="pull-left">
https://files.peakd.com/file/peakd-hive/ybanezkim26/itN9pdpY-IMG20171007155623.jpg
</div>

<div class="text-justify">
<b>Kim Ybañez</b>

<sub>Welcome to Kim's small corner in Hive. He is a chemical engineer by profession, but a blogger by passion. He is a wanderlust and an adventure seeker. Join his quests as he visits secluded destinations, climbs mountains, tries new and exotic dishes, and explores his country (The Philippines) and the rest of the world even if he's still a poor corporate slave with tons of bills to pay and two siblings to support in college.</sub>

<sub>If you like his content, don't forget to upvote and leave a comment to show some love. You can also reblog if you want to. Also, don't forget to follow him to be updated with his latest posts.
</sub>
</div>


Here's what it looks like:

Kim Ybañez

Welcome to Kim's small corner in Hive. He is a chemical engineer by profession, but a blogger by passion. He is a wanderlust and an adventure seeker. Join his quests as he visits secluded destinations, climbs mountains, tries new and exotic dishes, and explores his country (The Philippines) and the rest of the world even if he's still a poor corporate slave with tons of bills to pay and two siblings to support in college.

If you like his content, don't forget to upvote and leave a comment to show some love. You can also reblog if you want to. Also, don't forget to follow him to be updated with his latest posts.

H2
H3
H4
3 columns
2 columns
1 column
45 Comments
Ecency