Skip to content

Commit

Permalink
#27: Markdown.Link implements Markdown.IElement interface now
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcinCelej committed Jan 6, 2024
1 parent c6eaf2a commit 05add94
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
) : Markdown+Image
- ToString() : string

## Synergy.Documentation.Markup.Markdown+Link (class)
## Synergy.Documentation.Markup.Markdown+Link (class) : Markdown+IElement
- ctor(
filePath: CodeFile,
text: string? [Nullable, Optional]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@
) : Markdown+Image
- ToString() : string

## Markup.Markdown+Link (class)
## Markup.Markdown+Link (class) : Markdown+IElement
- ctor(
filePath: CodeFile,
text: string? [Nullable, Optional]
Expand Down
2 changes: 1 addition & 1 deletion Documentation/Synergy.Documentation/Markup/Markdown.cs
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ public Image RelativeTo(CodeFile file)

#region Link

public class Link
public class Link : IElement
{
private readonly CodeFile _filePath;
private readonly string _alternateText;
Expand Down

0 comments on commit 05add94

Please sign in to comment.