Shortcodes

Minimo comes with several shortcodes built-in.


Shortcode: center

Center align you content.

center: Parameters

  • Markdown content between opening and closing tags.

center: Usage Example

{{% center %}}
_Center Aligned Text_
{{% /center %}}

Output

Center Aligned Text


Shortcode: convo

Renders conversation blocks.

convo: Parameters

  • sep [String] (optional): seperator between person and text (default: “:”)

convo: Inner Syntax

person :: text

You can remove the person part, if you want.

convo: Usage Example

{{< convo sep=":" >}}

Jerry :: You don't look so tough.

Finch :: It's because I have only two modes, Jerry. Calm, and furious. It's a rare person that sees the latter and lives to talk about it.

{{< /convo >}}

Output

  1. Jerry
    :
    You don’t look so tough.
  2. Finch
    :
    It’s because I have only two modes, Jerry. Calm, and furious. It’s a rare person that sees the latter and lives to talk about it.

Shortcode: file

Include content from seperate file with syntax highlighting.

file: Parameters

0 => filename [String] (required)
1 => filetype [String] (optional)

file: Usage Example

{{< file "content/_index.md" >}}

Output

---
title: Index
menu:
  - main
  - sidebar
weight: -270
---

## Plantillas para MS Office y Apple iWork

Miles de plantillas, hojas de cálculo y formularios para ayudarlo en su hogar, en la escuela o en el trabajo.

## Por producto

- [MS Word](https://klariti.com/es/tags/word/)
- [MS Excel](https://klariti.com/es/tags/excel/)
- [Apple Pages](https://klariti.com/es/tags/apple/)
- [Apple Numbers](https://klariti.com/es/tags/apple/)

## Por categoría

- [Negocios] (https://klariti.com/es/tags/business)
- [Finanzas] (https://klariti.com/es/tags/finance/)
- [Gratis] (https://klariti.com/es/tags/free/)
- [Marketing] (https://klariti.com/es/tags/marketing/)
- [Procédures] (https://klariti.com/es/tags/procedures/)
- [Planes] (https://klariti.com/es/tags/plan/)
- [Ventas y marketing] (https://klariti.com/es/tags/sales/)
- [Pruebas de software] (https://klariti.com/es/tags/test/)
- [Desarrollo de software] (https://klariti.com/es/tags/sdlc/)

## Tutorials

- [Cómo estructurar un caso de estudio](https://klariti.com/es/tags/tutorial/)

## Busque formularios, listas de verificación y listas para Excel, Word y Visio

Cada semana compartimos plantillas descargables gratuitas para Microsoft Office, Apple iWork y Google Docs.

Puede usarlos para organizar su agenda, administrar proyectos, ayudar a los empleados, optimizar los procesos y crear mejores presentaciones.

Actualmente, hay más de 627 modelos en el sitio, así que use el motor de búsqueda si no ve lo que está buscando.

## Plantilla de la semana

La oferta especial de esta semana es el paquete de modelos en la Guía del usuario. 5 plantillas de guía de usuario / manual de usuario que se ejecutan en todas las versiones de MS Word, Apple Pages y Google Doc. Descargue la plantilla de la guía de usuario aquí.

## Aplicación de plantillas de iTunes

Si está en iTunes, asegúrese de descargar la aplicación Template Store en iTunes. Desarrollamos esto en colaboración con Klariti Ltd. La mayoría son modelos premium, pero cada semana también publican plantillas gratuitas.

Shortcode: text

Text with custom size and color

text: Parameters

You can use either Named or Unnamed Parameters

Named Parameters

  • s or size [String] (optional): multiplier relative to the normal size
  • c or color [String] (optional): name / hex / rgb / rgba

Unnamed Parameters

0 => textsize [String] (required): multiplier relative to the normal size
1 => textcolor [String] (optional): name / hex / rgb / rgba

text: Usage Example

{{% text s="1.4" color="purple" %}}
font-size: 1.4em;
color: purple;
{{% /text %}}

Output

font-size: 1.5em;
color: purple;