Here is a long quote:
The journey of a thousand miles begins with a single step. Every great achievement starts with the courage to dream, the determination to persist, and the wisdom to learn from every obstacle along the way. Success is not a destination, but rather a continuous process of growth, reflection, and meaningful progress toward what truly matters to you. — Ancient Wisdom
And here is a short quote:
The only limit to our realization of tomorrow will be our doubts of today. — Franklin D. Roosevelt
CodeSnippet component:
Code fences:
echo "Hello, world!" CodeSnippet component:
Code fences:
<h1>Hello, world!</h1> CodeSnippets component:
Code fences:
console.log('Hello, world!'); CodeSnippet component:
Code fences:
{
"name": "John",
"age": 30
} CodeSnippet component:
Code fences:
# Hello, world! CodeSnippet component:
Code fences:
<script>
let message = $state('Hello, world!');
</script>
<h1>{message}</h1> CodeSnippet component:
Code fences:
Hello, world! CodeSnippet component:
Code fences:
export type User = {
name: string;
age: number;
}; CodeSnippet component:
Code fences:
name: John
age: 30 CodeSnippet component:
Code fences:
<note>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don't forget me this weekend!</body>
</note>