-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#27: introduced ability to create api description for specific class …
…with its nested classes.
- Loading branch information
1 parent
f39e788
commit afb020c
Showing
7 changed files
with
134 additions
and
32 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
5 changes: 1 addition & 4 deletions
5
.../Synergy.Documentation.Tests/Architecture/Debt/Todos.Technical.Debt.verified.md
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
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
11 changes: 0 additions & 11 deletions
11
...Documentation.Tests/Architecture/Dependencies/Relations.of.Document.verified.md
This file was deleted.
Oops, something went wrong.
91 changes: 91 additions & 0 deletions
91
...Documentation.Tests/Architecture/Dependencies/Relations.of.Markdown.verified.md
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,3 +1,94 @@ | ||
## Synergy.Documentation.Markup.Markdown (class) | ||
- ctor() | ||
|
||
## Synergy.Documentation.Markup.Markdown+IElement (interface) | ||
|
||
## Synergy.Documentation.Markup.Markdown+Document (class) : IEnumerable<Markdown+IElement>, IEnumerable | ||
- ctor() | ||
- Append( | ||
element: Markdown+IElement | ||
) : Markdown+Document | ||
- Append( | ||
newElements: IEnumerable<Markdown+IElement> | ||
) : Markdown+Document | ||
- GetEnumerator() : IEnumerator<Markdown+IElement> | ||
- ToString() : string | ||
|
||
## Synergy.Documentation.Markup.Markdown+Header (abstract class) : Markdown+IElement | ||
- ToString() : string | ||
|
||
## Synergy.Documentation.Markup.Markdown+Header1 (class) : Markdown+Header, Markdown+IElement | ||
- ctor( | ||
header: string | ||
) | ||
- ToString() : string | ||
|
||
## Synergy.Documentation.Markup.Markdown+Header2 (class) : Markdown+Header, Markdown+IElement | ||
- ctor( | ||
header: string | ||
) | ||
- ToString() : string | ||
|
||
## Synergy.Documentation.Markup.Markdown+Header3 (class) : Markdown+Header, Markdown+IElement | ||
- ctor( | ||
header: string | ||
) | ||
- ToString() : string | ||
|
||
## Synergy.Documentation.Markup.Markdown+Code (class) : Markdown+IElement | ||
- ctor( | ||
text: string? [Optional], | ||
language: string? [Optional] | ||
) | ||
- Line( | ||
line: string | ||
) : Markdown+Code [NullableContext] | ||
- ToString() : string [NullableContext] | ||
|
||
## Synergy.Documentation.Markup.Markdown+Paragraph (class) : Markdown+IElement | ||
- ctor( | ||
text: string | ||
) | ||
- Line( | ||
line: string | ||
) : Markdown+Paragraph | ||
- ToString() : string | ||
|
||
## Synergy.Documentation.Markup.Markdown+Quote (class) : Markdown+IElement | ||
- ctor( | ||
text: string? | ||
) | ||
- Line( | ||
line: string | ||
) : Markdown+Quote | ||
- ToString() : string | ||
|
||
## Synergy.Documentation.Markup.Markdown+Table (class) : Markdown+IElement | ||
- ctor( | ||
headers: params String[] [ParamArray] | ||
) | ||
- Append( | ||
cells: params String[] [ParamArray] | ||
) : void | ||
- ToString() : string | ||
|
||
## Synergy.Documentation.Markup.Markdown+Image (class) : Markdown+IElement | ||
- ctor( | ||
filePath: CodeFile, | ||
alternateText: string? [Nullable, Optional] | ||
) | ||
- RelativeTo( | ||
file: CodeFile | ||
) : Markdown+Image | ||
- ToString() : string | ||
|
||
## Synergy.Documentation.Markup.Markdown+Link (class) | ||
- ctor( | ||
filePath: CodeFile, | ||
text: string? [Nullable, Optional] | ||
) | ||
- RelativeTo( | ||
file: CodeFile | ||
) : Markdown+Link | ||
- ToString() : string | ||
|
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
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