Esempio n. 1
0
 public static void Save <T>(this DocumentSet <T> documentSet, string directoryPath, bool cleanOutputDirectory, MdSerializationOptions markdownOptions) where T : IDocument
 {
     documentSet.Save(directoryPath, cleanOutputDirectory, (document, path) =>
     {
         if (document is MdDocument mdDocument)
         {
             mdDocument.Save(path, markdownOptions);
         }
         else if (document is IMarkdownDocument markdownDocument)
         {
             markdownDocument.Save(path, markdownOptions);
         }
         else
         {
             document.Save(path);
         }
     });
 }