Compare commits

...

5 Commits
main ... guide

Author SHA1 Message Date
Adam Hopkins
f613818263
Add mistune (again) 2023-09-07 10:57:14 +03:00
Adam Hopkins
36ea283b42
Add missing requirements 2023-09-07 10:53:23 +03:00
Adam Hopkins
a7766de797
Add mistune 2023-09-07 10:41:31 +03:00
Adam Hopkins
b67e31efe8
Add a docstring to trigger a change 2023-09-07 10:38:48 +03:00
Adam Hopkins
7ac4933386
Add missing requirement 2023-09-07 10:30:17 +03:00
3 changed files with 14 additions and 0 deletions

View File

@ -22,6 +22,7 @@ span.linenos.special { color: #000000; background-color: #ffffc0; padding-left:
.cs { color: #a2a2a2; font-style: italic } /* Comment.Special */ .cs { color: #a2a2a2; font-style: italic } /* Comment.Special */
.gd { color: #777777 } /* Generic.Deleted */ .gd { color: #777777 } /* Generic.Deleted */
.ge { color: #777777 } /* Generic.Emph */ .ge { color: #777777 } /* Generic.Emph */
.ges { color: #777777 } /* Generic.EmphStrong */
.gr { color: #777777 } /* Generic.Error */ .gr { color: #777777 } /* Generic.Error */
.gh { color: #777777 } /* Generic.Heading */ .gh { color: #777777 } /* Generic.Heading */
.gi { color: #777777 } /* Generic.Inserted */ .gi { color: #777777 } /* Generic.Inserted */

View File

@ -1,3 +1,8 @@
sanic>=23.6.* sanic>=23.6.*
sanic-ext>=23.6.* sanic-ext>=23.6.*
msgspec msgspec
python-frontmatter
pygments
docstring-parser
libsass
mistune

View File

@ -1,3 +1,11 @@
"""Sanic User Guide
https://sanic.dev
Built using the SHH stack:
- Sanic
- html5tagger
- HTMX"""
from pathlib import Path from pathlib import Path
from webapp.worker.factory import create_app from webapp.worker.factory import create_app