diff --git a/README.md b/README.md index 7cacf71..7db1da2 100644 --- a/README.md +++ b/README.md @@ -62,6 +62,10 @@ in that context, for example sorting blogs - - +## features u might wanna add + +- syntax highlighting : -- edit `BlogRender` + ## why ari-web blog manager - writer friendly -- uses markdown, keeps tracks of dates useful custom markdown extensions, support for editing, removal of posts,, and u can style ur blog the way you want it to b using css, easy build directory cleanup, support for custom fonts, locales, licenses, etc diff --git a/scripts/blog.py b/scripts/blog.py index 4330798..5788ed3 100755 --- a/scripts/blog.py +++ b/scripts/blog.py @@ -217,50 +217,44 @@ POST_TEMPLATE: typing.Final[str] = ( -
-

{post_title}

+
+

{post_title}

-
-
-
{post_content}
-
- + + +
+
{post_content}
+ """ ) @@ -274,44 +268,40 @@ INDEX_TEMPLATE: typing.Final[str] = ( -
-

{blog_header}

+
+

{blog_header}

-
-
-
    {blog_list}
-
- + + +
+
    {blog_list}
+ """ ) @@ -325,37 +315,37 @@ STATS_TEMPLATE: typing.Final[str] = ( -
-

stats of {blog_header}

+
+

stats of {blog_header}

-
+ + +
    @@ -414,9 +404,7 @@ STATS_TEMPLATE: typing.Final[str] = (
-
- - + """ )