You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the editable html part below the elm code there is no <meta charset="utf-8"> in the head.
So when copy pasting code outside of Ellie, you have to know you cannot use the html like that or the encoding will not work properly.
This is no an easy catch for beginner.
Use this to reproduce the behavior
moduleMainexposing (main)
importBrowserimportHtmlexposing (Html, text)
importHtml.Eventsexposing (onClick)
update:msg->String->Stringupdate msg model =
model
view:String->Htmlmsgview model =
text model
main:Program()Stringmsgmain =Browser.sandbox
{ init ="école", view = view
, update = update
}
The text was updated successfully, but these errors were encountered:
In the editable html part below the elm code there is no
<meta charset="utf-8">
in the head.So when copy pasting code outside of Ellie, you have to know you cannot use the html like that or the encoding will not work properly.
This is no an easy catch for beginner.
Use this to reproduce the behavior
The text was updated successfully, but these errors were encountered: