--- 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
Elements + Tailwind = your creative vision, with no compromise.
``` > 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)