Welcome to Our Component Showcase
This blog post demonstrates all the custom components we've created for our Markdown renderer.
Paragraphs and Text Styling
This is a standard paragraph. It should have comfortable line height and good readability.
Here's some text with bold and italic styling.
Lists
Unordered List
Here's an unordered list of fruits:
- Apples
- Bananas
- Cherries
- Dates
Ordered List
Now, let's see an ordered list of steps:
- Wake up
- Drink coffee
- Code
- Repeat
Blockquotes
Let's see how blockquotes look:
The best way to predict the future is to invent it.
-- Alan Kay
Code Blocks
Here's an example of inline code: const greeting = "Hello, World!";
And now, a code block:
function fibonacci(n) {
if (n <= 1) return n
return fibonacci(n - 1) + fibonacci(n - 2)
}
console.log(fibonacci(10))
Images
Here's an example image (smaller size):
Or a larger image:
Links
Here's an example of an inline link to DocuAsk.