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

Test image
Test image

Ordered list

  1. Create the Markdown file
  2. Add content
  3. Render it on the page
  4. Review styles

Blockquote

Simplicity is not the absence of complexity, but control over it.

Example table

NameTypeStatus
Main pageLandingActive
BlogContentIn testing
DocumentationTechnicalPending

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);