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 a basic POCO - Markdown converter #22

Open Cloud-Awesome opened 2 years ago

Cloud-Awesome commented 2 years ago
  1. Create a document passing a POCO in the constructor
public MdDocument(string fileName, IDocumentMe pocoClass, IFileSystem fileSystem = null)
  1. Create a document passing in a list of POCOs in the constructor
public MdDocument(string fileName, IEnumerable<IDocumentMe> pocoClasses, 
            IFileSystem fileSystem = null)
  1. Create a new IDocumentPart type to enable it to be embedded into a wider document