Create empty markdown files for elements

This commit is contained in:
Christoph Hagen
2022-08-30 20:09:30 +02:00
parent aaa9b0f4aa
commit 20c6d53c6f
2 changed files with 6 additions and 2 deletions

View File

@ -59,7 +59,8 @@ struct PageGenerator {
}
private func makeContent(page: Element, language: String, path: String) -> (content: String, includesCode: Bool)? {
guard let content = files.contentOfOptionalFile(atPath: path, source: page.path) else {
guard let content = files.contentOfOptionalFile(atPath: path, source: page.path, createEmptyFileIfMissing: true),
content.trimmed != "" else {
return nil
}
return PageContentGenerator(factory: factory.factory)