diff options
author | neodarz <neodarz@neodarz.net> | 2018-07-29 17:16:40 +0200 |
---|---|---|
committer | neodarz <neodarz@neodarz.net> | 2018-07-29 17:16:40 +0200 |
commit | 28118458dc3d60f7eae4fdb3cb135085203b514e (patch) | |
tree | 757fdb165f6d4b7fcfaf825f1089fff5c50f0ccb | |
parent | ddcf54c82dbec25c47ff2a99429df75b1ee5b6ca (diff) | |
download | my_new_personal_website-28118458dc3d60f7eae4fdb3cb135085203b514e.tar.xz my_new_personal_website-28118458dc3d60f7eae4fdb3cb135085203b514e.zip |
Fix bug
Diffstat (limited to '')
-rwxr-xr-x | pyblog | 4 | ||||
-rw-r--r-- | source/blog/index.md | 2 | ||||
-rw-r--r-- | source/notes/index.md | 2 |
3 files changed, 4 insertions, 4 deletions
@@ -654,7 +654,7 @@ def generate_blog_list(feed): lines = indexmd.readlines() with open("build/blog/index.html", 'w', encoding='utf-8') as indexmd: for line in lines: - indexmd.write(re.sub(r'-- generate blog_list here --', div_blog_list, line)) + indexmd.write(re.sub(r'{% generate blog_list here %}', div_blog_list, line)) def generate_notes_list(): @@ -740,7 +740,7 @@ def generate_notes_list(): lines = indexmd.readlines() with open("build/notes/index.html", 'w', encoding='utf-8') as indexmd: for line in lines: - indexmd.write(re.sub(r'-- generate notes_list here --', div_notes_list, line)) + indexmd.write(re.sub(r'{% generate notes_list here %}', div_notes_list, line)) diff --git a/source/blog/index.md b/source/blog/index.md index 1520d6f0..4e117b4d 100644 --- a/source/blog/index.md +++ b/source/blog/index.md @@ -20,4 +20,4 @@ custom-css: " Bon, je suppose que vous savez ce qu'est le principe d'un blog... :p --- generate blog_list here -- +{% generate blog_list here %} diff --git a/source/notes/index.md b/source/notes/index.md index eb890d2e..ea914ac1 100644 --- a/source/notes/index.md +++ b/source/notes/index.md @@ -7,4 +7,4 @@ astuces qui, soit ne valent pas le coup, soit je n'ai pas encore pus prendre le temps, de rédiger un article à leurs propos. --- generate notes_list here -- +{% generate notes_list here %} |