voila-dashboards / voila-vuetify

Dashboard template for Voilà based on VuetifyJS
Other
154 stars 41 forks source link

Use UTF-8 in base HTML template #20

Closed scy closed 4 years ago

scy commented 4 years ago

While I was editing my override of app.html in a project, I noticed that using a string like Loading … leads to it being displayed as Loading …, which is of course wrong.

The reason for that is that the base template doesn’t specify the character set, therefore the browser defaults to ISO-8859-1. This change fixes that.

It will break the encoding for users that are using legacy 8-bit charsets in their string outputs, but in 2019, I don’t see a reason to encourage that.

mariobuikhuizen commented 4 years ago

Thanks!