📝

Markdown Notes System

🧑‍🎓 Apprentice⏱️ 15 minutes

📋 Suggested prerequisites

  • Basic terminal
  • Basic Git

What you'll build

You'll create your own Markdown notes system: an organized folder structure to document everything you learn. You'll learn Markdown syntax, create templates for different types of notes, and organize everything in thematic folders. When you're done, you'll have a personal knowledge system with learning notes, projects, and a progress journal. You can version it with Git, sync it to the cloud, or use it with apps like Obsidian to have your second brain.


Basic syntax

# Title
## Subtitle

**Bold** and *italic*

- List
- Of items

1. Numbered
2. List

`inline code`

```javascript
// Code block
const x = 1;

Link

Quote or important note


---

## Notes structure

notes/ ├── learning/ │ ├── javascript.md │ ├── git.md │ └── docker.md ├── projects/ │ ├── project-1.md │ └── ideas.md └── journal/ ├── 2024-01-01.md └── 2024-01-02.md


---

## Learning template

```markdown
# Topic: [Name]

## What is it?
[Simple explanation]

## Why does it matter?
[Practical reason]

## Example

[code]


## Common errors
- Error 1: Solution 1
- Error 2: Solution 2

## Useful links
- [Resource 1](url)

Tools

ToolWhat for
ObsidianLocal app with links
NotionAll-in-one in the cloud
VS CodeIntegrated preview
GitHubRenders markdown

Sync with Git

cd notes
git init
git add .
git commit -m "My notes"
# Push to GitHub for backup

Next step

Collaborate with Git — Work as a team

© 2026 luxIA.us - All rights reserved

Created by Alann Reyes