23 lines
1.6 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
title: What is Markdown ?
date: 2020-01-27
tags: ["markdown"]
image : "/img/posts/img-3.jpg"
Description : "Markdown is a lightweight, plain-text formatting language used for creating styled text through simple, readable syntax...."
---
### What is Markdown?
Markdown is a lightweight, plain-text formatting language used for creating styled text through simple, readable syntax. Developed by John Gruber in 2004, its goal is to allow writers to format documents without complex code, making it easy to read and edit. The beauty of Markdown lies in its simplicity, allowing creators to add headings, lists, images, links, and more by typing a few symbols around their text.
For instance:
- Typing `**bold text**` makes text **bold**.
- Writing `#` at the beginning of a line turns it into a heading, and more `#` symbols make it a smaller subheading.
- Lists can be created using `-` or `*` for bullets or numbers for ordered lists.
Because Markdown converts text to HTML, its perfect for web content creation, blog posts, documentation, and technical writing, all while remaining easy to format in a non-HTML context. Markdown files, saved as `.md` or `.markdown` files, are compatible with many popular platforms like GitHub, Reddit, and Hugo, making it a preferred choice for developers, writers, and content creators.
Using Markdown allows for better productivity and collaboration because anyone can edit or view Markdown text without needing HTML or specialized knowledge. Its clean, minimalistic approach makes it accessible and effective for writing that needs to balance readability and formatting.
<!--Photo by Robert Katzki on Unsplash-->