Simple and easy-to-setup Bible verse highlighter/formatter streamfield block for Wagtail CMS. Useful for quoting Scripture verses in a blog post, etc.
Install via pip:
pip install wagtailversesblock
Import and add VersesBlock
to models.py:
...
from wagtail.core.models import Page
from wagtail.core.fields import StreamField
...
from wagtailversesblock.blocks import VersesBlock
...
class ExamplePage(Page):
...
body = StreamField([
('verses', VersesBlock()),
], null=True)
Pull requests and/or feature suggestions are welcome!
Licensed under the BSD 3-Clause license