Files
liquid/filters/capitalize.md
2016-11-08 16:23:33 -05:00

571 B

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

Makes the first character of a string capitalized.

Input

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

Output

```text Title ```

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

Input

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

Output

```text My great title ```