Skip to main content

Enhanced HTML editor block for Wagtail CMS with CodeMirror 6, syntax highlighting, Emmet support, and fullscreen mode

Project description

wagtail-html-editor

PyPI version CI License: BSD-3-Clause

Philosophy

Wagtail's RawHTMLBlock is a simple textarea. While this simplicity is intentional, it can be limiting when editors need to write complex HTML layouts directly in the admin interface.

wagtail-html-editor bridges this gap by providing a VS Code-like editing experience within Wagtail's admin. Syntax highlighting, auto-indentation, Emmet support, and fullscreen mode make HTML coding in the admin not just possible, but comfortable.

This library is designed as a standalone package that can be used independently, while also serving as an optional enhancement for wagtail-reusable-blocks.

Key Features

  • Syntax Highlighting - HTML, CSS, and JavaScript with proper colorization
  • Auto-indentation - Smart indentation like VS Code
  • Dark/Light Mode - Follows Wagtail admin theme or manual toggle
  • HTML Autocomplete - Tag completion, attribute suggestions
  • Emmet Support - Expand abbreviations (e.g., div.container>ul>li*3)
  • Fullscreen Mode - Expand editor to use the full panel for comfortable coding
  • Auto-closing Tags - Automatic closing tag insertion
  • Lightweight - Built on CodeMirror 6 with minimal bundle size

Use Cases

  • HTML Layouts - Write complex HTML directly in Wagtail admin
  • Custom Widgets - Embed third-party widgets with proper syntax highlighting
  • Email Templates - Create HTML email templates with visual feedback
  • SVG Content - Edit inline SVG with syntax support
  • Script Injection - Add custom scripts with proper code editing

Installation

pip install wagtail-html-editor

Add to your INSTALLED_APPS:

# settings.py
INSTALLED_APPS = [
    # ...
    'wagtail_html_editor',
    # ...
]

That's it! You can now use EnhancedHTMLBlock in your StreamFields.

Quick Start

1. Use in Your Page Model

from wagtail.models import Page
from wagtail.fields import StreamField
from wagtail.admin.panels import FieldPanel
from wagtail_html_editor.blocks import EnhancedHTMLBlock

class ContentPage(Page):
    body = StreamField([
        ('html', EnhancedHTMLBlock()),
        # ... other blocks
    ], blank=True, use_json_field=True)

    content_panels = Page.content_panels + [
        FieldPanel('body'),
    ]

2. Edit HTML in Admin

  1. Go to your page in Wagtail admin
  2. Add an "HTML" block to the body
  3. Start coding with syntax highlighting!
  4. Click the fullscreen button for a larger editing area
  5. Use Emmet abbreviations for rapid HTML creation

3. Render in Template

{% load wagtailcore_tags %}

{% for block in page.body %}
    {% include_block block %}
{% endfor %}

Editor Features

Syntax Highlighting

The editor provides proper syntax highlighting for:

  • HTML tags and attributes
  • Inline CSS (<style> blocks)
  • Inline JavaScript (<script> blocks)
  • Template syntax (Django/Jinja2)

Emmet Support

Expand abbreviations with Tab:

Abbreviation Expansion
div.container <div class="container"></div>
ul>li*3 <ul><li></li><li></li><li></li></ul>
a[href=#] <a href="#"></a>
! HTML5 boilerplate

Fullscreen Mode

Click the expand button below the editor to enter fullscreen mode:

  • Uses the full left panel (excluding preview area)
  • "Done" button at the bottom to exit
  • ESC key also exits fullscreen

Theme Support

The editor automatically follows Wagtail's theme:

  • Auto (default): Follows Wagtail admin dark/light mode
  • Light: Always use light theme
  • Dark: Always use dark theme

Configuration

All settings are optional. Configure via WAGTAIL_HTML_EDITOR in your Django settings:

# settings.py
WAGTAIL_HTML_EDITOR = {
    "emmet": True,           # Enable Emmet abbreviation expansion
    "indent_size": 2,        # Number of spaces per indent (2 or 4)
    "indent_with_tabs": False,  # Use tabs instead of spaces
    "theme": "auto",         # "auto", "light", or "dark"
}

Available Settings

Setting Default Description
emmet True Enable Emmet abbreviation expansion
indent_size 2 Number of spaces per indent (2 or 4)
indent_with_tabs False Use tabs instead of spaces
theme "auto" Color theme: "auto", "light", or "dark"

Integration with wagtail-reusable-blocks

If you're using wagtail-reusable-blocks, install with the editor extra:

pip install wagtail-reusable-blocks[editor]

This automatically replaces RawHTMLBlock with EnhancedHTMLBlock in your reusable blocks.

Troubleshooting

Editor Not Loading

Issue: The editor shows a plain textarea instead of CodeMirror.

Solutions:

  1. Check browser console for JavaScript errors
  2. Ensure static files are collected: python manage.py collectstatic
  3. Clear browser cache (Cmd+Shift+R or Ctrl+Shift+R)

Emmet Not Working

Issue: Tab doesn't expand Emmet abbreviations.

Solutions:

  1. Ensure emmet is True in settings (default)
  2. Check that the cursor is at the end of the abbreviation
  3. Some abbreviations may conflict with autocomplete - press Tab twice

Theme Not Matching Wagtail

Issue: Editor theme doesn't follow Wagtail's dark/light mode.

Solutions:

  1. Ensure theme is set to "auto" in settings (default)
  2. Reload the page after changing Wagtail's theme
  3. Check browser console for theme detection errors

Requirements

Python Django Wagtail
3.10+ 4.2, 5.1, 5.2 6.4, 7.0, 7.2

See our CI configuration for the complete compatibility matrix.

Documentation

Project Links

Contributing

We welcome contributions! Please see our Contributing Guide for details.

License

BSD 3-Clause License. See LICENSE for details.

Inspiration

  • CodeMirror 6 - The code editor powering this package
  • Emmet - The essential toolkit for web-developers
  • wagtail-reusable-blocks - Reusable content blocks with slot-based templating
  • VS Code - The editing experience we aim to bring to Wagtail

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

wagtail_html_editor-0.3.0.tar.gz (1.7 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

wagtail_html_editor-0.3.0-py3-none-any.whl (1.7 MB view details)

Uploaded Python 3

File details

Details for the file wagtail_html_editor-0.3.0.tar.gz.

File metadata

  • Download URL: wagtail_html_editor-0.3.0.tar.gz
  • Upload date:
  • Size: 1.7 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for wagtail_html_editor-0.3.0.tar.gz
Algorithm Hash digest
SHA256 2f40ba95539f8ab83b145d644265d6a67f59dc59363bfe0a8ffc4652c854722f
MD5 01e000d79865bd8716473bfdeb5760c0
BLAKE2b-256 9d802c54d24f797ce58f49223c50799b6e6a3e58d874b27f8e60860488dc5cb3

See more details on using hashes here.

Provenance

The following attestation bundles were made for wagtail_html_editor-0.3.0.tar.gz:

Publisher: publish.yml on kkm-horikawa/wagtail-html-editor

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wagtail_html_editor-0.3.0-py3-none-any.whl.

File metadata

File hashes

Hashes for wagtail_html_editor-0.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 fde70e53572ffdb9e4ca91de77fa284d8ffbe9d142b8d144ef31117a26d10cf6
MD5 d3455d63295a2275b3649a5ba6f75c29
BLAKE2b-256 7f148a20f6382fdc274af77d919e608c56eb03d59af490251cd528a8fda2b1a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for wagtail_html_editor-0.3.0-py3-none-any.whl:

Publisher: publish.yml on kkm-horikawa/wagtail-html-editor

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page