diff options
author | pushmatrix <daniel.beauchamp@gmail.com> | 2013-08-20 15:35:10 +0200 |
---|---|---|
committer | pushmatrix <daniel.beauchamp@gmail.com> | 2013-08-20 15:35:20 +0200 |
commit | 9f93895bd40aad02e88f7ed7bfd954c930aa27db (patch) | |
tree | 3f1caefef9628571f40d264028fd63ea2eb57293 /templates/project/widgets/text | |
parent | 2b715ac63dd2de5c718142822663dbded44bbecd (diff) |
Strip html by default in widgets. Users can disable this with the 'raw' filter. Closes #176
Diffstat (limited to 'templates/project/widgets/text')
-rw-r--r-- | templates/project/widgets/text/text.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/project/widgets/text/text.html b/templates/project/widgets/text/text.html index 7aeb66d..decd109 100644 --- a/templates/project/widgets/text/text.html +++ b/templates/project/widgets/text/text.html @@ -1,7 +1,7 @@ <h1 class="title" data-bind="title"></h1> -<h3 data-bind="text | raw"></h3> +<h3 data-bind="text"></h3> -<p class="more-info" data-bind="moreinfo | raw"></p> +<p class="more-info" data-bind="moreinfo"></p> <p class="updated-at" data-bind="updatedAtMessage"></p> |