I have this model:
JavaScript
x
15
15
1
from wagtail.wagtailcore import blocks
2
3
class BlogPage(Page):
4
date = models.DateField("Post date")
5
intro = RichTextField(blank=True)
6
body = StreamField([
7
('heading', blocks.CharBlock(classname="full title")),
8
('paragraph', blocks.RichTextBlock()),
9
('image', ImageChooserBlock()),
10
('code', CodeBlock()),
11
('markdown', MarkDownBlock()),
12
('media', TestMediaBlock(icon='media')),
13
('blockquote', blocks.BlockQuoteBlock())
14
])
15
When I’m saving page with some text using blockquote
I use some line breakes and even <br>
tags:
But on the page there are no line breaks after it:
So how to make this work and save line breaks? I’m using wagtail 1.13.1
.
Advertisement
Answer
I think it was done because of security reasons. But It is possible to solve the problem – redefine BlockQuoteBlock
for example like this:
JavaScript
1
18
18
1
from django.utils.safestring import mark_safe
2
from django.utils.html import format_html
3
4
from wagtail.wagtailcore import blocks
5
6
7
class BlockQuoteBlock(blocks.TextBlock):
8
9
def render_basic(self, value, context=None):
10
if value:
11
return format_html(
12
'<blockquote>{0}</blockquote>', mark_safe(value))
13
else:
14
return ''
15
16
class Meta:
17
icon = "openquote"
18
I’ve added mark_safe()
function to the original implementation. And then use this block in the model, if you do so, then <br>
tags begin to work