-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Charles DE VANDIERE
committed
Nov 18, 2019
1 parent
94a817f
commit 2dd58f6
Showing
2 changed files
with
30 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,29 @@ | ||
# xmldoc2md | ||
Tool to generate markdown from C# XML documentation | ||
# XMLDoc2Markdown | ||
|
||
Tool to generate markdown from C# XML documentation, based on [MarkdownGenerator](https://github.com/neuecc/MarkdownGenerator) project. | ||
|
||
## How to use | ||
|
||
### Install tool | ||
|
||
```shell | ||
> dotnet tool install -g XMLDoc2Markdown | ||
``` | ||
|
||
### Generate documentation | ||
|
||
```shell | ||
> xmldoc2md <DLL_SOURCE_PATH> <OUTPUT_DIRECTORY> | ||
``` | ||
|
||
#### Example | ||
|
||
```shell | ||
> xmldoc2md Sample.dll docs | ||
``` | ||
|
||
### Display command line help | ||
|
||
```shell | ||
> xmldoc2md -h | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters