Skip to content

Commit

Permalink
Properly fix escaping.
Browse files Browse the repository at this point in the history
Ruby sucks
  • Loading branch information
SinZ163 committed Sep 23, 2017
1 parent e7f1cd3 commit aa6b52b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lua_bots_enums.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ permalink: /lua_bots_enums/
{% for enum_class in site.data.lua_bots_enums %}
# {{ enum_class[0] }}
{% for enum_field in enum_class[1] %}
* {{enum_field["key"] | escape}} = {{enum_field["value"]}}
* {{enum_field["key"] | escape}} = {{enum_field["value"] | append: '' | escape}}
{% if enum_field contains "description"%}
* {{enum_field["description"] | escape}}
{% endif %}
Expand Down
2 changes: 1 addition & 1 deletion lua_server_enums.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ permalink: /lua_server_enums/
{% for enum_class in site.data.lua_server_enums %}
# {{ enum_class[0] }}
{% for enum_field in enum_class[1] %}
* {{enum_field["key"] | escape}} = {{enum_field["value"]}}
* {{enum_field["key"] | escape}} = {{enum_field["value"] | append: '' | escape}}
{% if enum_field contains "description"%}
* {{enum_field["description"] | escape}}
{% endif %}
Expand Down

0 comments on commit aa6b52b

Please sign in to comment.