Comprehensive Markdown Guide
1. Text Formatting
- Bold: Strong text or strong text
- Italic: Emphasized text or emphasized text
- Bold and Italic: Combined
Strikethrough:Deleted textInline Code:const x = 10;
2. Lists
Unordered & Ordered
- First ordered item
- Second ordered item
- Indented unordered item
- Another item
- Deeply nested ordered item
Task Lists (GFM)
- Completed task
- Incomplete task
- Another incomplete task
3. Links and Images
- External Link: Docusaurus Website
- Internal Link: Link to this same file

4. Code Blocks (Advanced)
Docusaurus uses Prism for highlighting. It supports titles, line highlighting, and line numbers.
src/components/Button.jsx
import React from "react";
function Button(props) {
// Highlighted lines appear with a background color
const clickHandler = () => {
console.log("Clicked!");
};
return <button onClick={clickHandler}>Click Me</button>;
}