Cloud-Awesome / markdown-maker

Lightweight library to assist creation of .md files (in GitHub and/or DocFX flavours)
MIT License
0 stars 0 forks source link

Add MdDocumentSet #6

Closed Cloud-Awesome closed 2 years ago

Cloud-Awesome commented 3 years ago

To allow for the generation of multiple .md files in one .save call

e.g.

const string folderPath = "c:/output-documents/";

var documentSet = new MdDocumentSet(folderPath)
    .AddDocument(new MdDocument(...)
    .AddDocument(new MdDocument(...)
    .AddDocument(new MdDocument(...)
    .Save(); 

Good use cases for this are: