test
Test Page
This is a test page created in Markdown to check content styles, structure, and rendering.
Introduction
Markdown allows you to write content easily using plain text. It is useful for documentation, blogs, static pages, README files, and content management systems.
Main features
- Bold text
- Italic text
- Ordered and unordered lists
- Links
- Images
- Code blocks
- Blockquotes
- Tables
Link example
You can visit the Test website.
Image example
Ordered list
- Create the Markdown file
- Add content
- Render it on the page
- Review styles
Blockquote
Simplicity is not the absence of complexity, but control over it.
Example table
| Name | Type | Status |
|---|---|---|
| Main page | Landing | Active |
| Blog | Content | In testing |
| Documentation | Technical | Pending |
Example code
type PageStatus = "draft" | "published" | "archived";
interface Page {
title: string;
slug: string;
status: PageStatus;
}
const page: Page = {
title: "Test page",
slug: "pagina-de-prueba",
status: "draft",
};
console.log(page);