diff --git a/pyproject.toml b/pyproject.toml index e21d363..0be8a05 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "website-build-tools" -version = "0.1.9" +version = "0.1.10" description = "tools for building websites, used by defelement.org and quadraturerules.org" readme = "README.md" requires-python = ">=3.8.0" diff --git a/webtools/__init__.py b/webtools/__init__.py index 77d22ac..e122254 100644 --- a/webtools/__init__.py +++ b/webtools/__init__.py @@ -1,3 +1,3 @@ """Website building tools.""" -__version__ = "0.1.9" +__version__ = "0.1.10" diff --git a/webtools/code_markup.py b/webtools/code_markup.py index d5e8e08..5ecfeca 100644 --- a/webtools/code_markup.py +++ b/webtools/code_markup.py @@ -57,18 +57,19 @@ def python_highlight(txt: str) -> str: txt, "#", [ + "assert", + "class", + "def", + "elif", + "else", "for", - "while", "from", - "import", - "return", + "global", "if", - "elif", - "else", - "def", + "import", "in", - "global", - "assert", + "return", + "while", ], )