dadhi / CsToMd

Visual Studio extension and Dotnet CLI Tool to generate the Markdown Docs from the C# Tests keeping your Docs and Tests in sync!
MIT License
35 stars 4 forks source link

Ability to remove specific lines from the md output #4

Closed dadhi closed 4 years ago

dadhi commented 4 years ago

This way we can remove namespaces abd using noise from the documet if needed.

Example:

using System; // no-md
dadhi commented 4 years ago

Btw, it can be done with the help of collapsible section like this:

using (...) ```cs using System; using System.IO; using CsToMd; using static System.Console; ```
dadhi commented 4 years ago

added support for the default cstomd.config or for the config file provided as a second argument in the Dotnet CLI tool.

dadhi commented 4 years ago

Btw, it can be done with the help of collapsible section like this:

It is covered by #6