Reformate le code

This commit is contained in:
2026-02-16 17:54:22 +01:00
parent 2eb8bc99a7
commit 729400e03d
2 changed files with 14 additions and 8 deletions

View File

@@ -1,12 +1,13 @@
import glob
import shutil
import datetime
import datetime
import textwrap
from pathlib import Path
from blog.page import Page
from blog.config import Config
from jinja2 import Environment, FileSystemLoader, Template
class Blog:
def __init__(self, conf: Config):
@@ -69,7 +70,8 @@ class Blog:
if updated < date:
updated = date
articles += textwrap.indent(
textwrap.dedent(f"""\
textwrap.dedent(
f"""\
<entry>
<title>{self.pages[filename].title}</title>
<link href="{self.conf.url}/pages/{filename}.html"/>
@@ -81,10 +83,13 @@ class Blog:
</div>
</content>
</entry>
"""),
" ")
"""
),
" ",
)
header = textwrap.dedent(f""" <?xml version="1.0" encoding="utf-8"?>
header = textwrap.dedent(
f""" <?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>{self.conf.title}</title>
<subtitle>{self.conf.presentation}</subtitle>
@@ -96,11 +101,12 @@ class Blog:
<email>{self.conf.author_mail}</email>
</author>
<id>urn:uuid:{self.conf.id}</id>
""")
"""
)
footer = "</feed>"
with open(Path(self.conf.outbox) / "atom.xml", 'w+') as rss_file:
with open(Path(self.conf.outbox) / "atom.xml", "w+") as rss_file:
rss_file.write(header + articles + footer)
def _copy_css(self):

View File

@@ -15,7 +15,7 @@ class Config:
"draft",
"author_name",
"author_mail",
"id"
"id",
}
def __init__(self, config_file: Path):