-
-
Notifications
You must be signed in to change notification settings - Fork 9
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
1 parent
cdc83ed
commit e4097f1
Showing
17 changed files
with
159 additions
and
20 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
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,13 +1,13 @@ | ||
<Project> | ||
|
||
<PropertyGroup> | ||
<Version>0.1.0.2</Version> | ||
<Version>0.1.1.0</Version> | ||
<CodeAnalysisRuleSet>$(MSBuildThisFileDirectory)global.ruleset</CodeAnalysisRuleSet> | ||
<LangVersion>8.0</LangVersion> | ||
<SignAssembly>true</SignAssembly> | ||
<AssemblyOriginatorKeyFile>$(MSBuildThisFileDirectory)DotMarkdown.snk</AssemblyOriginatorKeyFile> | ||
<Authors>Josef Pihrt</Authors> | ||
<Copyright>Copyright (c) 2019-2020 Josef Pihrt</Copyright> | ||
<Copyright>Copyright (c) 2017-2020 Josef Pihrt</Copyright> | ||
</PropertyGroup> | ||
|
||
</Project> |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# AngleBracketEscapeStyle Enum | ||
|
||
[Home](../../README.md) • [Fields](#fields) | ||
|
||
**Namespace**: [DotMarkdown](../README.md) | ||
|
||
**Assembly**: DotMarkdown\.dll | ||
|
||
```csharp | ||
public enum AngleBracketEscapeStyle | ||
``` | ||
|
||
### Inheritance | ||
|
||
[Object](https://docs.microsoft.com/en-us/dotnet/api/system.object) → [ValueType](https://docs.microsoft.com/en-us/dotnet/api/system.valuetype) → [Enum](https://docs.microsoft.com/en-us/dotnet/api/system.enum) → AngleBracketEscapeStyle | ||
## Fields | ||
|
||
| Name | Value | Summary | | ||
| ---- | ----- | ------- | | ||
| Backslash | 0 | | ||
| CharEntity | 1 | | ||
| EntityRef | 2 | | ||
|
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 |
---|---|---|
@@ -0,0 +1,47 @@ | ||
# MFactory\.Label Method | ||
|
||
[Home](../../../../README.md) | ||
|
||
**Containing Type**: [MFactory](../README.md) | ||
|
||
**Assembly**: DotMarkdown\.dll | ||
|
||
## Overloads | ||
|
||
| Method | Summary | | ||
| ------ | ------- | | ||
| [Label(MLabel)](#DotMarkdown_Linq_MFactory_Label_DotMarkdown_Linq_MLabel_) | | | ||
| [Label(String, String, String)](#DotMarkdown_Linq_MFactory_Label_System_String_System_String_System_String_) | | | ||
|
||
## Label\(MLabel\) <a id="DotMarkdown_Linq_MFactory_Label_DotMarkdown_Linq_MLabel_"></a> | ||
|
||
```csharp | ||
public static DotMarkdown.Linq.MLabel Label(DotMarkdown.Linq.MLabel other) | ||
``` | ||
|
||
### Parameters | ||
|
||
**other**   [MLabel](../../MLabel/README.md) | ||
|
||
### Returns | ||
|
||
[MLabel](../../MLabel/README.md) | ||
|
||
## Label\(String, String, String\) <a id="DotMarkdown_Linq_MFactory_Label_System_String_System_String_System_String_"></a> | ||
|
||
```csharp | ||
public static DotMarkdown.Linq.MLabel Label(string text, string url, string title = null) | ||
``` | ||
|
||
### Parameters | ||
|
||
**text**   [String](https://docs.microsoft.com/en-us/dotnet/api/system.string) | ||
|
||
**url**   [String](https://docs.microsoft.com/en-us/dotnet/api/system.string) | ||
|
||
**title**   [String](https://docs.microsoft.com/en-us/dotnet/api/system.string) | ||
|
||
### Returns | ||
|
||
[MLabel](../../MLabel/README.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
16 changes: 16 additions & 0 deletions
16
docs/api/DotMarkdown/MarkdownFormat/AngleBracketEscapeStyle/README.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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# MarkdownFormat\.AngleBracketEscapeStyle Property | ||
|
||
[Home](../../../README.md) | ||
|
||
**Containing Type**: [MarkdownFormat](../README.md) | ||
|
||
**Assembly**: DotMarkdown\.dll | ||
|
||
```csharp | ||
public DotMarkdown.AngleBracketEscapeStyle AngleBracketEscapeStyle { get; } | ||
``` | ||
|
||
### Property Value | ||
|
||
[AngleBracketEscapeStyle](../../AngleBracketEscapeStyle/README.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
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
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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