Toolkit Bay

Markdown Formatter / Beautifier

Format Markdown file for better readibility and consistent

See more formatter tools

Markdown Formatter / Beautifier / Prettier

Note: This tool can format code blocks inside markdown as well

What is Markdown ?

Markdown is a markup language, mostly used to generate formatted text. The markdown text can be converted into other format, such as HTML and PDF. And the interesting part is the text that you are reading right now generated from markdown. We choose markdown instead of direct HTML because of the portability and we can store the file as markdown (extenstion in .md) instead of html.

Sample of Markdown Text :

# Hi Guys
## I'm the second header
| Plane    | Airport | Hours |
| -------- | :-----: | ----: |
| Jetsky   |   LHR   |  1338 |

---

- List
- List 2

with a [link] (https://toolkitbay.com)

Those text can be converted to HTML such as :

<h1>Hi Guys</h1>
<h2>I'm the second header</h2>
<table>
<thead>
<tr>
<th>Plane</th>
<th align="center">Airport</th>
<th align="right">Hours</th>
</tr>
</thead>
<tbody>
<tr>
<td>Jetsky</td>
<td align="center">LHR</td>
<td align="right">1338</td>
</tr>
</tbody>
</table>
<hr />
<ul>
<li>List</li>
<li>List 2</li>
</ul>
<p>with a [link] (<a href="https://toolkitbay.com">https://toolkitbay.com</a>)</p>

Why you need to format the Markdown ?

Formatted markdown will be easier to read, especially by the creator. Hence the debugging or collaboration process can be much faster. After markdown formatted, usually the structure will still the same but remove the ambiguity, so this is why formatted markdown from one people will be quite similar with markdown from the other people because formatted markdown follow similar principle.

Category
formatter
Tags

About

Toolkit Bay or TKB is an online tools website providing free and easy to use tools to increase productivity.

If you have any inquiries or suggestions or issues, you can contact us on: contact@toolkitbay.com

Data & Privacy

We respect your data. Uploaded file/data/input will be automatically deleted. And the processed data will be deleted less than a day.

More detail on privacy here

Copyright © 2024 Toolkit Bay. All Rights Reserved