feat(Notes) notes are now markdown. Documents WIP

This commit is contained in:
2022-04-01 19:41:19 -04:00
parent 14ed0c3ea5
commit 596f82bc8c
19 changed files with 178 additions and 246 deletions
+4
View File
@@ -18,4 +18,8 @@ using (var db = new DatabaseContext(options.Options)) {
File.WriteAllTextAsync($"{webPath}/TaskModels.json", JsonSerializer.Serialize(db.TaskModels));
File.WriteAllTextAsync($"{webPath}/WebSectionModels.json", JsonSerializer.Serialize(db.WebSectionModels));
File.WriteAllTextAsync($"{webPath}/WebPageModels.json", JsonSerializer.Serialize(db.WebPageModels));
File.WriteAllTextAsync($"{webPath}/DocumentationModels.json", JsonSerializer.Serialize(db.DocumentationModels));
File.WriteAllTextAsync($"{webPath}/NoteModels.json", JsonSerializer.Serialize(db.NoteModels));
}