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 DocFx metadata element #1

Closed Cloud-Awesome closed 2 years ago

Cloud-Awesome commented 3 years ago

e.g. something to replace this:

var docfxMetadata = 
    "---" + Environment.NewLine +
    "uid: this_is_a_tester" + Environment.NewLine +
    "---";

new MdDocFxMetadata(key, value)

Cloud-Awesome commented 3 years ago

This maybe needs a yaml generator class too...

e.g.

---
documentType: tester
seeAlso:
  - uid: this_is_a_uid
    name: New page
  - uid: this_is_another_uid
    name: Second page
---

Consider whether this is a new class within the md maker, or a separate project for yml..?