Files
liquid/_filters/capitalize.md
2019-09-11 10:46:41 -04:00

611 B

title, description
title description
capitalize Liquid filter that capitalizes the first character of a string.

Makes the first character of a string capitalized.

Input

```liquid {% raw %} {{ "title" | capitalize }} {% endraw %} ```

Output

```text {{ "title" | capitalize }} ```

capitalize only capitalizes the first character of a string, so later words are not affected:

Input

```liquid {% raw %} {{ "my great title" | capitalize }} {% endraw %} ```

Output

```text {{ "my great title" | capitalize }} ```