TecnologĂ­a

Complete Guide: Article Elements

This article is a complete guide demonstrating all typographic elements supported by the Foundation blog system. Use it as a reference to see how each component renders with the prose styles from Tailwind Typography.

Section Headings

Headings structure content and improve SEO. This is an h2.

Subheading h3

Subheadings allow hierarchy up to six levels deep.

Lists

Unordered lists are ideal for collections without a specific order:

  • First list item
  • Second item with bold and italic
  • Third item with an external link

Ordered lists show sequences or steps:

  1. Set up the project with NestJS
  2. Create entities with TypeORM
  3. Implement controllers and services
  4. Write tests for each layer

Comparison Table

Tables are useful for comparing structured data:

TechnologyAdvantageUse Case
NestJSModular architectureEnterprise APIs
Vue 3Fine-grained reactivityInteractive SPAs
TypeORMTyped decoratorsORM with PostgreSQL

Code Block

Code blocks show snippets with preserved syntax:

import { Controller, Get } from '@nestjs/common';

@Controller('users')
export class UsersController {
  @Get()
  findAll() {
    return this.usersService.findAll();
  }
}

Blockquote

Blockquotes highlight important ideas or external references:

Clean architecture separates what changes from what stays stable. Dependencies should point toward abstractions, not details.

Summary

We covered headings, paragraphs, ordered and unordered lists, tables, code blocks, blockquotes, bold, italic, and links. All these elements render correctly with the @tailwindcss/typography plugin and the prose class.

Related posts

How to use the CMS

Step-by-step guide to creating and publishing content in the Foundation CMS.

Welcome to Foundation

An introduction to Foundation, the all-in-one platform for business integrations.