---
title: Getting Started Guide
author: John Doe
date: 2025-01-15
tags: tutorial, guide, mdx
published: true
---
# Getting Started with MDX
MDX is a powerful format that combines Markdown with JSX components.
## Installation
To install MDX in your project, run:
```bash
npm install @mdx-js/mdx
```
## Basic Usage
Here's a simple example of using MDX:
```mdx
# Hello World
This is a paragraph with **bold** and *italic* text.
```
## Features
MDX provides several key features:
1. **Markdown support** - Write content in familiar Markdown syntax
2. **JSX components** - Embed React components directly
3. **Frontmatter** - Add metadata to your documents
4. **Code highlighting** - Beautiful syntax highlighting out of the box
## Conclusion
MDX makes it easy to create rich, interactive documentation.