Does handlebars.js replace newline characters with
?

前端 未结 6 2112
星月不相逢
星月不相逢 2020-12-24 11:45

Trying to use handlebars.js for templating but the library seems to ignore newlines.

What is the correct way to deal with newlines? Should they be replaced manually

6条回答
  •  伪装坚强ぢ
    2020-12-24 12:13

    Any solution that uses triple staches will open your application to XSS attacks unless you implement something to sanitize the HTML.

    I would suggest using the

     tag rather than creating a custom helper.

提交回复
热议问题