Fill table with Luquid

Hello! I have the following Liquid code but it doesn’t render in the correct table:

## Favourite games

| Game | Description |
| :--- | :---------- |
{% for game in site.games %}
| [{{ game.title }}]({{ game.permalink }}) | {{ game.description }} |
{% endfor %}

games is a collection with custom description property.

I’ve solved the problem:

| Game | Description |
| :--- | :---------- |
{% for game in site.games -%}
| [{{ game.title }}]({{ game.permalink }}) | {{ game.description }} |
{% endfor %}
1 Like