Nefarius.Tools.XMLDoc2Markdown
1.1.0
Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet tool install --global Nefarius.Tools.XMLDoc2Markdown --version 1.1.0
This package contains a .NET tool you can call from the shell/command line.
dotnet new tool-manifest # if you are setting up this repo dotnet tool install --local Nefarius.Tools.XMLDoc2Markdown --version 1.1.0
This package contains a .NET tool you can call from the shell/command line.
#tool dotnet:?package=Nefarius.Tools.XMLDoc2Markdown&version=1.1.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
nuke :add-package Nefarius.Tools.XMLDoc2Markdown --version 1.1.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
<img align="left" width="100" height="100" src="icon.png">XMLDoc2Markdown
Tool to generate markdown from C# XML documentation.
See sample generated documentation here.
How to use
Install tool
dotnet tool install -g Nefarius.Tools.XMLDoc2Markdown
Generate documentation
xmldoc2md <DLL_SOURCE_PATH> <OUTPUT_DIRECTORY>
Example
xmldoc2md Sample.dll docs
Insert code example
You can insert custom code example into the documentation.
Create one file for each examples. Give them the full name of corresponding type, property, method,...
Add the CLI option: --examples-path
with the path to examples files.
Examples
MyClassLib.MyClass.md
## Example
Lorem ipsum...
```csharp
new MyClass();
```
MyClassLib.MyClass.MyProperty.md
#### Example
Lorem ipsum...
```csharp
foo.MyProperty = "foo";
```
MyClassLib.MyClass.MyMethod(System.String).md
#### Example
Lorem ipsum...
```csharp
foo.MyMethod("foo");
```
MyClassLib.MyClass.#ctor.md
#### Example
Lorem ipsum...
```csharp
new MyClass();
```
Display command line help
xmldoc2md -h
Usage: xmldoc2md [options] <src> <out>
Arguments:
src DLL source path
out Output directory
Options:
-v|--version Show version information.
-?|-h|--help Show help information.
--index-page-name Name of the index page, (default: "index").
--examples-path Path to the code examples to insert in the documentation.
--github-pages Remove '.md' extension from links for GitHub Pages.
--gitlab-wiki Remove '.md' extension and './' prefix from links for gitlab wikis.
--back-button Add a back button on each page with custom text, (default: "< Back").
--link-back-button Set link for back button, (default: "./").
--private-members Write documentation for private members.
--onlyinternal-members Write documentation for only internal members.
--excludeinternal Exclude documentation for internal types.
--templatefile Layout template for documentation, (default: "template.md").
--back-index-button Add a back button in index page, (default: "< Back").
--link-backindex-button Set link for back button in index page, (default: "./").
Template Tokens
{xmldoc2md-Title()} = Title of Document
{xmldoc2md-Back()} = back-button for pages
{xmldoc2md-BackIndex()} = back-button for index page
{xmldoc2md-Body()} = The Documentation
Example Template
# <img align="left" width="100" height="100" src="MyImage.png">Custom Title :{xmldoc2md-Title()}
{xmldoc2md-Back()}{xmldoc2md-BackIndex()}
- - -
{xmldoc2md-Body()}
- - -
{xmldoc2md-Back()}
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net7.0 is compatible. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
This package has no dependencies.
Version | Downloads | Last updated |
---|---|---|
1.6.1 | 79 | 11/19/2024 |
1.6.0 | 69 | 11/19/2024 |
1.6.0-pre001 | 62 | 11/19/2024 |
1.5.0 | 205 | 8/16/2024 |
1.5.0-pre001 | 107 | 8/16/2024 |
1.4.0 | 92 | 7/22/2024 |
1.4.0-pre001 | 98 | 7/19/2024 |
1.3.0 | 115 | 6/22/2024 |
1.2.0 | 107 | 6/22/2024 |
1.1.0 | 102 | 6/22/2024 |
1.0.4 | 164 | 2/22/2024 |