Allow code blocks inside blogposts
This commit is contained in:
parent
f96124b744
commit
5e3746eb51
4 changed files with 45 additions and 3 deletions
|
@ -1,5 +1,8 @@
|
|||
from wagtail.blocks import RichTextBlock
|
||||
|
||||
from base.blocks import StreamBlock
|
||||
from wagtailcodeblock.blocks import CodeBlock
|
||||
|
||||
class BlogPostBlock(StreamBlock):
|
||||
paragraph = RichTextBlock(blank=True)
|
||||
paragraph = RichTextBlock(blank=True)
|
||||
code = CodeBlock(label='Code snippet')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue