Compare commits
1 Commits
Author | SHA1 | Date | |
---|---|---|---|
1522c54c44 |
@ -1311,6 +1311,12 @@ internal static partial class HelperMarkdown
|
|||||||
continue;
|
continue;
|
||||||
WriteBlocks(logger, input, markdownFile, fileName, blocks.AsReadOnly());
|
WriteBlocks(logger, input, markdownFile, fileName, blocks.AsReadOnly());
|
||||||
}
|
}
|
||||||
|
string[] files = Directory.GetFiles(input.Destination, "*.json", SearchOption.TopDirectoryOnly);
|
||||||
|
foreach (string file in files)
|
||||||
|
{
|
||||||
|
if (!fileNames.Contains(file))
|
||||||
|
File.Delete(file);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private static ReadOnlyCollection<Table> GetTables(string[] lines)
|
private static ReadOnlyCollection<Table> GetTables(string[] lines)
|
||||||
|
Reference in New Issue
Block a user