Frequently Asked Questions (FAQ's)

Frequently Asked Questions (FAQ's)

Question 1:

How do we create a .md (Markdown) file, what are its main purposes, and how does it work in detail, especially in real-world development and Agentic AI applications?

Answer:

A Markdown file is just a text file where you write with a few simple symbols, and they turn into nice formatting (headings, bold, lists, links).

Think of it like texting:

You type **hi**→ it shows as hi(bold)


You type # Title → it shows as a big heading

That's it. No buttons, no menus. Just symbols.

Why do people use it

  • Docs & READMEs — almost every GitHub repo uses README.md

  • Notes & knowledge bases — Obsidian, Notion, Logseq all use Markdown

  • Blog posts & static sites — Hugo, Jekyll, Astro consume .md files

  • AI/LLM context files — SKILL.md, AGENTS.md, CLAUDE.md instructions for AI agents (you already use these)

  • Technical writing — easier than HTML, more portable than .docx

How to create one in VS Code

  1. Open VS Code

  2. Press Ctrl + N (new file)

  3. Press Ctrl + S (save)

  4. Name it: notes.md (the .md part is important)

  5. Start typing

Done. You made a Markdown file.

How to see the pretty version

While editing your .md file:

  • Press Ctrl + K, then V

  • A preview opens next to your editor

  • Type on the left → see formatted output on the right

This is the magic moment. Try it once and you'll get it.


The 8 things you'll actually use

1. Headings

Big Heading

Medium Heading

Small Heading

More # = smaller heading.

2. Bold and italic

**bold**


*italic*

3. Lists

- apple

- banana

- mango

Or numbered:

1. First

2. Second

3. Third

4. Links

Click here

5. Images

my picture

6. Code

For one word: use backticks → code

For a block of code:


your code here

7. Quote

This is a quote.

8. Line separator

---

Three dashes = a horizontal line.

Try it now

Copy this into a .md file:

# My First Markdown File

Hi, I'm learning Markdown.

## What I like

- It's **easy**
- It's *fast*
- It just works
Check out [K21 Academy](https://k21academy.com).

Save it. Press Ctrl + K then V. Watch it become real.

image.png