private void FetchMarkdown()
 {
     try {
         this.Markdown = System.IO.File.ReadAllText(MarkdownFile.FullURIGenerator(this));
     }
     catch (Exception e) {
         //this.db?.ExceptionLogs.Add(new ExceptionLog(e));
         this.Markdown = "";
     }
 }
 /// <summary>
 /// This is not a copy constructor, it only copies the settings and such
 /// </summary>
 /// <param name="other"></param>
 public MarkdownFile(MarkdownFile other) : this(other.MarkdownOptions, null)
 {
 }