doc(CheatSheet) Adding a quick reference document
This commit is contained in:
Binary file not shown.
@@ -7,7 +7,7 @@
|
|||||||
<div class="docDateCreated"><b>Created</b>: @DocContentModel.CreatedDate.ToString("MM/dd/yyyy")</div>
|
<div class="docDateCreated"><b>Created</b>: @DocContentModel.CreatedDate.ToString("MM/dd/yyyy")</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="docContent">@((MarkupString)Markdown.ToHtml(DocContentModel.Content))</div>
|
<div class="docContent">@((MarkupString)Markdown.ToHtml(DocContentModel.Content, pipeline))</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
@@ -25,6 +25,17 @@ justify-content: space-between;
|
|||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
th {
|
||||||
|
padding: 8px;
|
||||||
|
border: 1px solid gray;
|
||||||
|
|
||||||
|
}
|
||||||
|
td {
|
||||||
|
padding: 8px;
|
||||||
|
border: 1px solid gray;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
@code {
|
@code {
|
||||||
@@ -32,4 +43,6 @@ justify-content: space-between;
|
|||||||
[Parameter]
|
[Parameter]
|
||||||
public DocContentModel DocContentModel { get; set; } = default!;
|
public DocContentModel DocContentModel { get; set; } = default!;
|
||||||
|
|
||||||
|
MarkdownPipeline pipeline = new MarkdownPipelineBuilder().UseAdvancedExtensions().Build();
|
||||||
|
|
||||||
}
|
}
|
||||||
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user