-
Hi. Docfx is great. But for my purposes, it's way over-complicated. I don't need to host any page, a set of plain Markdown files containing the information is enough. I am looking for something like what I've created (by hand) here. Is it possible to have Docfx do this? Would it be possible for me to isolate the parts that output all the symbols and information and do the formatting from there? I've been meaning to create a Any suggestions for this? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 6 replies
-
docfx supports |
Beta Was this translation helpful? Give feedback.
-
If the |
Beta Was this translation helpful? Give feedback.
-
Hi @just-ero, did you ever find a (semi) simple solution to this? I'm looking for exactly the same! Thanks 😃 |
Beta Was this translation helpful? Give feedback.
@just-ero
If the
outputFormat
isapiPage
, the output will be some YAML files confirming to this schema. You may be able to build a "custom formatter" that renders it into the desired format you like to some extend. In fact that is how themarkdown
output format works internally by docfx and here is the code for it to implement.