Fix date format below headlines

This commit is contained in:
Christoph Hagen 2023-07-28 13:21:57 +02:00
parent 4cb72677db
commit bd57c6fbf5
2 changed files with 2 additions and 2 deletions

View File

@ -99,7 +99,7 @@ struct PageContentGenerator {
// For images: ![*large* left_title](file right_title)
// For videos: ![option1,option2,...](file)
// For svg with custom area: ![x,y,width,height](file.svg)
// For downloads: ![download](file1, text1; file2, text2, ...)
// For downloads: ![download](file1, text1; file2, text2, (download-name); ...)
// For a simple boxes: ![box](title;body)
// A fancy page link: ![page](page_id)
// External pages: ![external](url1, text1; url2, text2, ...)

View File

@ -51,7 +51,7 @@ struct LocalizedSiteTemplate {
self.month = df2
let df3 = DateFormatter()
df3.dateFormat = "dd"
df3.dateFormat = "d"
df3.locale = Locale(identifier: language)
self.day = df3