---
title: "Markdown Syntax"
date: 2025-08-06
author: Jonny
tags: [general]
---

Markdown is a lightweight way to write formatted text using plain characters. You can create headings, lists, links, images, quotes, and even code blocks without touching a complicated editor. It stays readable in raw form and converts cleanly into HTML, making it ideal for blogs, documentation, and quick note-taking. If you want simple formatting that never gets in your way, [Markdown](https://www.markdownguide.org) is hard to beat.

This project walks through some *fundamental Markdown syntax*, showing how quickly you can format clean, readable content. Once you get the hang of it, Markdown becomes **surprisingly powerful and effortless**.

1. Easy to use  
2. Lightweight  
3. 100% Markdown

Here’s a simple code snippet:

`console.log("Hello, world!");`

And here's a code block:

```html
<div class="p-6 bg-blue-100 border-l-4 border-blue-500 text-blue-900">
    Elements + Tailwind = your creative vision, with no compromise.
</div>
```

> This is a simple blockquote.

### Lists

**Unordered List**
- Apples  
- Bananas  
- Cherries  

**Ordered List**
1. Install dependencies  
2. Run the app  
3. Celebrate 🎉

You can insert a rule, like this:

---

And finally you can creat links and embed images, and even YouTube videos like this:

[Visit Markdown Guide](https://www.markdownguide.org)

![Local project Image](images/jonny.webp)

![Extrernal Markdown Logo](https://upload.wikimedia.org/wikipedia/commons/4/48/Markdown-mark.svg)

<iframe width="560" height="315" src="https://www.youtube.com/embed/x59UfuZvMwM" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>