Skip to main content

Add a code block to StreamField of Wagtail with Shiki Syntax highlighter.

Project description

PyPI - Version GitHub License Supported Python versions Static Badge

Wagtail Shiki is based on Wagtail Code Block.

Wagtail Code Block is a syntax highlighter block for source code for the Wagtail CMS. It features real-time highlighting in the Wagtail editor, the front end, line numbering, and support for PrismJS themes.

Wagtail Shiki uses the Shiki library instead of PrismJS library both in Wagtail Admin and the website. Required files for Shiki are loaded on demand using esm.run.

Additionally, Wagtail Shiki provides text decoration functions (underlining, borders, and more, extensible with CSS styles) within the syntax highlighting.

You can set each themes for light and dark modes.

Instalation

pip install wagtail-shiki

And add wagtail_shiki to INSTALLED_APPS in mysite/settings/base.py.

INSTALLED_APPS = [
    "home",
    "search",
    "wagtail.contrib.forms",
    "wagtail.contrib.redirects",
    "wagtail.embeds",
    "wagtail.sites",
    "wagtail.users",
    #... other packages
    "wagtail_shiki",   # <- add this.
]

Trial Run

Install new wagtail for trial run.

mkdir mysite
python -m venv mysite/env
source mysite/env/bin/activate

pip install wagtail
wagtail start mysite mysite

cd mysite
pip install -r requirements.txt
pip install wagtail-shiki



Edit files bellow:
mysite/settings/base.py

INSTALLED_APPS = [
    #... other packages
    "wagtail_shiki",   # <- add this.
]


home/models.py

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

from wagtail_shiki.blocks import CodeBlock


class HomePage(Page):
    body = StreamField([
        ("heading", TextBlock()),
        ("code", CodeBlock(label='Code')),
    ], blank=True)

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


home/templates/home/home_page.html

    ...

{% load wagtailcore_tags wagtailimages_tags %}

    ...

<!-- {% include 'home/welcome_page.html' %} -->
{% include_block page.body %}

    ...



run:

python manage.py migrate
python manage.py createsuperuser
python manage.py runserver

After the server starts, go to http://127.0.0.1:8000/admin" .
Clicking the "+" Add button in the body section, and click "Code" to add a code block.



Then you can edit the code block.

Various settings

WAGS_LINE_NUMBERS (default = True)

If true, line numbers will be displayed.

You can set the starting line number by inputting "Start number" field in the code block editing screen.

WAGS_COPY_TO_CLIPBOARD (default = True)

If true, copy to clipboard button will be displayed.

WAGS_THEME (default = 'nord')

The theme for light mode.

Please refer to https://shiki.matsu.io/themes for a list of available themes.

Samples of each theme are provided at the end of this document.

WAGS_DARK_THEME (default = WAGS_THEME)

The theme for dark mode.If this is not set, it will map the light theme to the dark theme.
As a result, the same theme will be assigned to light mode and dark mode.

WAGS_SKIP_LEADING_SPACES (default = True)

If true, the decoration of the leading spaces will be skipped to show.

WAGS_DECORATONS_REMOVE_FRONT_SPAACE (default = True)

If true, the decoration of the front side leading spaces will be deleted.

WAGS_DECORATONS_REMOVE_REAR_SPAACE (default = True)

If true, the decoration of the rear side leading spaces will be deleted.

WAGS_SHOW_HIGHLIGHTWORDS_INPUT (default = False)

If true, the "Highlight Words" field(uneditable) will be shown.
This is only for debugging.

WAGS_CLASS_PREFIX (default = 'wags')

The prefix for the CSS class name for decorations.
This parameter and the following "-" will be prepended to the value of the "value" key in "WAGS_DECORATION_OPTIONS" and used as a CSS class.

WAGS_DECORATION_OPTIONS

default = [
    {
        'value': 'underline-red',
        'text': 'underline red',
        'style': 'text-decoration: red underline;'
    },
    {
        'value': 'underline-blue',
        'text': 'underline blue',
        'style': 'text-decoration: blue underline;'
    },
    {
        'value': 'underline-green',
        'text': 'underline green',
        'style': 'text-decoration: green underline;'
    },
    {
        'value': 'underline-yellow',
        'text': 'underline yellow',
        'style': 'text-decoration: yellow underline;'
    },
    {
        'value': 'wavyunderline-red',
        'text': 'wavy underline red',
        'style': 'text-decoration: red wavy underline;'
    },
    {
        'value': 'wavyunderline-blue',
        'text': 'wavy underline blue',
        'style': 'text-decoration: blue wavy underline;'
    },
    {
        'value': 'wavyunderline-green',
        'text': 'wavy underline green',
        'style': 'text-decoration: green wavy underline;'
    },
    {
        'value': 'wavyunderline-yellow',
        'text': 'wavy underline yellow',
        'style': 'text-decoration: red wavy underline;'
    },
    {
        'value': 'dashedborder-red',
        'text': 'dashed border red',
        'style': 'border: dashed red; border-width: 1px; border-radius: 3px; padding: 0px;'
    },
    {
        'value': 'dashedborder-blue',
        'text': 'dashed border blue',
        'style': 'border: dashed blue; border-width: 1px; border-radius: 3px; padding: 0px;'
    },
    {
        'value': 'dashedborder-green',
        'text': 'dashed border green',
        'style': 'border: dashed green; border-width: 1px; border-radius: 3px; padding: 0px;'
    },
    {
        'value': 'dashedborder-yellow',
        'text': 'dashed border yellow',
        'style': 'border: dashed yellow; border-width: 1px; border-radius: 3px; padding: 0px;'
    },
    {
        'value': '',
        'text': 'Remove decoration(s)',
        'style': ''
    }
]
  • These five kind ofcharacters <, >, ', ", & in the string of each value of keys 'value', 'text' and 'style' are removeed.
  • The last option {'value': '', 'text': 'Remove decoration(s)', 'style': ''} is for Remove decoration(s).
    If valu of 'value' is empty string, the decoration will be removed.(The value of 'value' will be the CSS class name for the selected span.)

Some utility functions for creating CSS styles are provided in the module to ease the creation of decoration options in basy.py.

To use these functions, import them from the module:

from wagtail_shiki.settings import (
    css_style_underline as underline,
    css_style_dashedborder as dashedborder,
    css_style_bg_colored as bg_colored,
)

And then use it like following:

WAGS_DECORATION_OPTIONS = [
    ...
    {'value': 'underline-red', 'text': 'underline red', 'style': underline('red')},
    ...
    {'value': 'wavyunderline-red', 'text': 'wavy underline red', 'style': underline('red', 'wavy')},
    ...
    {'value': 'dashedborder-red', 'text': 'dashed border red', 'style': dashedborder('red')},
    ...
    {'value': 'bg_colored-red', 'text': 'ba-colored', 'style': bg_colored('red')},
    ...
]

It will expanded to:

WAGS_DECORATION_OPTIONS = [
    ...
    {'value': 'underline-red', 'text': 'underline red', 'style': 'text-decoration: red underline;'},
    ...
    {'value': 'wavyunderline-red', 'text': 'wavy underline red', 'style': 'text-decoration: red wavy underline;'},
    ...
    {'value': 'dashedborder-red', 'text': 'dashed border red', 'style': 'border: dashed red; border-width: 1px; border-radius: 3px; padding: 0px;'},
    ...
    {'value': 'bg_colored-red', 'text': 'ba-colored', 'style': 'background-color: red;'},
    ...
]

Not only color names, you can also use color specifications that are generally available in style sheets, such as '#00a400', 'rgb(214, 122, 127)' for these utility functions.

customizing decoration settings

Add new options to WAGS_DECORATION_OPTIONS in your Django settings and add CSS styles for the new options.

If you want to add orange under line decoration, add the following option to WAGS_DECORATION_OPTIONS in your Django settings.(class name is for example)

WAGS_DECORATION_OPTIONS = [
    ...
    {'value': 'underline-orange', 'text': 'underline orange', 'style': underline('orange')},
    ...
]

[!NOTE] WAGS_DECORATION_OPTIONS overrides the default settings, if you want to keep them, you have to add default settings along with your custom settings.

base settings for customize

from wagtail_shiki.settings import (
    css_style_underline as underline,
    css_style_dashedborder as dashedborder,
    css_style_bg_colored as bg_colored,
)

WAGS_DECORATION_OPTIONS = [
    {
        'value': 'underline-red',
        'text': 'underline red',
        'style': underline('red')
    },
    {
        'value': 'underline-blue',
        'text': 'underline blue',
        'style': underline('blue')
    },
    {
        'value': 'underline-green',
        'text': 'underline green',
        'style': underline('green')
    },
    {
        'value': 'underline-yellow',
        'text': 'underline yellow',
        'style': underline('yellow')
    },
    {
        'value': 'wavyunderline-red',
        'text': 'wavy underline red',
        'style': underline('red', 'wavy')
    },
    {
        'value': 'wavyunderline-blue',
        'text': 'wavy underline blue',
        'style': underline('blue', 'wavy')
    },
    {
        'value': 'wavyunderline-green',
        'text': 'wavy underline green',
        'style': underline('green', 'wavy')
    },
    {
        'value': 'wavyunderline-yellow',
        'text': 'wavy underline yellow',
        'style': underline('yellow', 'wavy')},
    {
        'value': 'dashedborder-red',
        'text': 'dashed border red',
        'style': dashedborder('red')
    },
    {
        'value': 'dashedborder-blue',
        'text': 'dashed border blue',
        'style': dashedborder('blue')
    },
    {
        'value': 'dashedborder-green',
        'text': 'dashed border green',
        'style': dashedborder('green')
    },
    {
        'value': 'dashedborder-yellow',
        'text': 'dashed border yellow',
        'style': dashedborder('yellow')
    },
    {
        'value': '',
        'text': 'Remove decoration(s)',
        'style': ''
    }
]

WAGS_INITIAL_LANGUAGE (default = 'text')

Specifies the initial Language for new added code block.

If this value is not specified or the specified value does not exist in WAGS_LANGUAGES or the default selection list, Plain Text ('text') will be selected.

WAGS_LANGUAGES

A list of languages ​​to enable. Don't add 'ansi'(Ansi) and 'text'(Plain Text) here.
They are automatically enabled.

  default= (
    ("bash", "Bash/Shell"),
    ("css", "CSS"),
    ("diff", "diff"),
    ('jinja', 'Django/Jinja'),
    ("html", "HTML"),
    ("javascript", "Javascript"),
    ("json", "JSON"),
    ("python", "Python"),
    ("scss", "SCSS"),
    ("yaml", "YAML"),
  )

Please refer to https://shiki.matsu.io/languages for a list of available languages.

Usage

Here's how to use this block in the editing screen of the admin site.

Language

Open the pull-down selector box in the Language field and select the language to use for syntax highlighting.

Show line numbers

Check the "Show line numbers" checkbox to show line numbers.

Start number

If you need to specify the starting line number, please enter it here. If this field is blank, start from line number "1".

Title

If you want to display the file name, title, etc., enter it here. If nothing is entered, the title block will not be displayed. For design customization of title block, see here.

Code

Enter the code text here that you want to apply syntax highlighting to.

Applying text decorations

Select the range you want to decorate in the preview box of syntax highlighting, click the right button of the mouse, select decoration (or remove), and press the "OK" button to apply.

Click the "Cancel" button to cancel the operation.

A pop-up menu will be displayed when both the start and end points of the selection are in the same preview box and you right-click inside that preview box.

The menu does not appear if the selection includes the outside of the preview box, or if you right-click outside of the preview box which the range was selected.

Title Block style customization

The title block stylesheet is separated from wagtail-shiki.css and placed under the title-block subdirectory.title-block.css is loaded by default.

Example style sheets for customization are placed in the same directory. title-block-default.css has the same content as title-block.css in the initial.

You can set the example stylesheet by renaming files to title-block.css or rewrite the file name in the @import statement, top of wagtail_shiki/static/wagtail_shiki/css/wagtail-shiki.css file.

Of course, you can also set your own style sheet.

Themes Gallery

andromeeda aurora-x ayu-dark
andromeeda aurora-x ayu-dark
catppuccin-frappe catppuccin-latte catppuccin-macchiato
catppuccin-frappe catppuccin-latte catppuccin-macchiato
catppuccin-mocha dark-plus dracula
catppuccin-mocha dark-plus dracula
dracula-soft everforest-dark everforest-light
dracula-soft everforest-dark everforest-light
github-dark github-dark-default github-dark-dimmed
github-dark github-dark-default github-dark-dimmed
github-dark-high-contrast github-light github-light-default
github-dark-high-contrast github-light github-light-default
github-light-high-contrast gruvbox-dark-hard gruvbox-dark-medium
github-light-high-contrast gruvbox-dark-hard gruvbox-dark-medium
gruvbox-dark-soft gruvbox-light-hard gruvbox-light-medium
gruvbox-dark-soft gruvbox-light-hard gruvbox-light-medium
gruvbox-light-soft houston kanagawa-dragon
gruvbox-light-soft houston kanagawa-dragon
kanagawa-lotus kanagawa-wave laserwave
kanagawa-lotus kanagawa-wave laserwave
light-plus material-theme material-theme-darker
light-plus material-theme material-theme-darker
material-theme-lighter material-theme-ocean material-theme-palenight
material-theme-lighter material-theme-ocean material-theme-palenight
min-dark min-light monokai
min-dark min-light monokai
night-owl nord one-dark-pro
night-owl nord one-dark-pro
one-light plastic poimandres
one-light plastic poimandres
red rose-pine rose-pine-dawn
red rose-pine rose-pine-dawn
rose-pine-moon slack-dark slack-ochin
rose-pine-moon slack-dark slack-ochin
snazzy-light solarized-dark solarized-light
snazzy-light solarized-dark solarized-light
synthwave-84 tokyo-night vesper
synthwave-84 tokyo-night vesper
vitesse-black vitesse-dark vitesse-light
vitesse-black vitesse-dark vitesse-light

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_shiki-1.1.0.tar.gz (32.7 kB view details)

Uploaded Source

Built Distribution

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

wagtail_shiki-1.1.0-py3-none-any.whl (27.5 kB view details)

Uploaded Python 3

File details

Details for the file wagtail_shiki-1.1.0.tar.gz.

File metadata

  • Download URL: wagtail_shiki-1.1.0.tar.gz
  • Upload date:
  • Size: 32.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for wagtail_shiki-1.1.0.tar.gz
Algorithm Hash digest
SHA256 17449db74aed9098354d196f5287a54c6242b52f966cddb59c2755f3f39c4c58
MD5 a12678d5ce6599b5ada8096530eb9673
BLAKE2b-256 8f1452de320df9a6f386f9891d786d1f1bc89a8dc2ac3ca475d8bc86bb13d6ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for wagtail_shiki-1.1.0.tar.gz:

Publisher: publish-to-pypi.yml on kawakin26/wagtail-shiki

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_shiki-1.1.0-py3-none-any.whl.

File metadata

  • Download URL: wagtail_shiki-1.1.0-py3-none-any.whl
  • Upload date:
  • Size: 27.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for wagtail_shiki-1.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 ac89834cd522657ee6be7ffba219d53ff97e12f2ac7dcd4819ffa4ac990df6d5
MD5 4e903260b8210057ac40f865298f96c0
BLAKE2b-256 48765f47c378435c14e698c2ebb58047cc81e8c1f59b22f97b32f97c506efad9

See more details on using hashes here.

Provenance

The following attestation bundles were made for wagtail_shiki-1.1.0-py3-none-any.whl:

Publisher: publish-to-pypi.yml on kawakin26/wagtail-shiki

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