mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-19 19:26:21 +00:00
fix: html_safe en comentarios y descripciones
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
This commit is contained in:
parent
476f0c005f
commit
9634f75870
3 changed files with 3 additions and 3 deletions
|
@ -1,2 +1,2 @@
|
|||
%a{href: profile['id']}= profile['preferredUsername']
|
||||
%p= profile['summary']
|
||||
%p= profile['summary'].html_safe
|
|
@ -21,4 +21,4 @@
|
|||
%a{ href: comment['inReplyTo'] }= comment['inReplyTo']
|
||||
.row
|
||||
.col.p-0
|
||||
%p= comment['content']
|
||||
%p= comment['content'].html_safe
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
- host = "https://#{host}"
|
||||
|
||||
%a{ href: host }= instance['title']
|
||||
%p= instance['description']
|
||||
%p= instance['description'].html_safe
|
||||
%p
|
||||
%span= t('.users')
|
||||
%span
|
||||
|
|
Loading…
Reference in a new issue