I'm using volt to write my views, in an page i'm receive values from database and load in text_field to permit edition and posterior update, the problem is:
view_page.volt
//my_var is the var wich i receive from controller
{{ text_field('text', 'value': my_var.text) }} //this works if the text no has accent
<input type="text" name="text" value="{{ my_var.text }}" /> //this way works independent of accented or not
What the problema??? for what Volt sintax dont work when the string contains accent???
The database collation is utf8_general_ci