MudMarkdown.Toc
1.0.1
dotnet add package MudMarkdown.Toc --version 1.0.1
NuGet\Install-Package MudMarkdown.Toc -Version 1.0.1
<PackageReference Include="MudMarkdown.Toc" Version="1.0.1" />
<PackageVersion Include="MudMarkdown.Toc" Version="1.0.1" />
<PackageReference Include="MudMarkdown.Toc" />
paket add MudMarkdown.Toc --version 1.0.1
#r "nuget: MudMarkdown.Toc, 1.0.1"
#addin nuget:?package=MudMarkdown.Toc&version=1.0.1
#tool nuget:?package=MudMarkdown.Toc&version=1.0.1
Language
MudBlazor.Markdown.Toc
Introduction
Hello, I am Ouse. This is an extension tool based on MudBlazor.Markdown for generating a table of contents (TOC). It supports the following features:
- Customizing the style of the TOC
- Specifying the corresponding MudMarkdown component for the generated TOC
- Automatically scrolling to the corresponding element
- Automatically tracking the TOC when the content changes
Demonstration
You can clone the repository locally, start the sample project, and experience it!
Basic Usage
Complete the configuration of MudBlazor and MudBlazor.Markdown.
Install Package
NuGet\Install-Package MudMarkdown.Toc -Version 1.0.1
NuGet URL:NuGet Gallery | MudMarkdown.Toc 1.0.1
Depending on the Blazor project type, import the corresponding file. For Blazor Web App, import it into App.razor; for standalone Blazor Wasm, import it into index.html:
<script src=@Assets["_content/MudBlazor.Markdown.Toc/Markdown.Toc.js"] type="module"></script>
Import the namespace:
@using MudBlazor.Markdown.Toc
Use the MudMarkdownToc component. You can place this component anywhere, here it is placed inside a MudDrawer. If your page has only one MudMarkdown component and the content does not change (users do not modify the Value parameter on this page), you can directly use this component. For other requirements, check the API section.
<MudMarkdown Value="@value"/> <MudDrawer Open Fixed Anchor="Anchor.Right" ClipMode="DrawerClipMode.Always"> <MudMarkdownToc></MudMarkdownToc> </MudDrawer>
API
The MudMarkdownToc component internally uses the MudTreeView component, so it inherits most properties of MudTreeView. Below are the unique properties of MudMarkdownToc π
- Id: Specifies which MudMarkdown component the TOC is generated for. Since the MudMarkdown component cannot have an Id, you need to add another HTML tag outside. For example, the TOC will be generated only for the element with the Id "one":
<MudGrid>
<MudItem xs="6">
<MudMarkdown Value="@value" />
</MudItem>
<MudItem xs="6">
<div id="one">
<MudMarkdown Value="@value1" />
</div>
</MudItem>
</MudGrid>
<MudDrawer Open Fixed Anchor="Anchor.Right" ClipMode="DrawerClipMode.Always">
<MudMarkdownToc Id="one"></MudMarkdownToc>
</MudDrawer>
- MonitoredValue: If your Value property content changes, use this property to monitor the passed content and compare it. If the parameter changes, the TOC will be regenerated. Without this property, switching content will not update the TOC!
<MudMarkdown Value="@currentValue" />
<MudDrawer Open Fixed Anchor="Anchor.Right" ClipMode="DrawerClipMode.Always">
@* Add the content to be monitored *@
<MudMarkdownToc MonitoredValue="@currentValue"></MudMarkdownToc>
<MudButton OnClick="SwitchContent">SwitchContent</MudButton>
</MudDrawer>
End
A big thank you to the contributors of MudBlazor and MudBlazor.Markdown!
If you have any questions, please contact me or open an Issue!
This is my first NuGet package, and I hope it helps your project. If you like it, consider giving it a Star and a Follow. I will continue to create new tools for the .NET community β€β€β€.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net9.0 is compatible. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. |
-
net9.0
- Microsoft.AspNetCore.Components.Web (>= 9.0.3)
- MudBlazor.Markdown (>= 8.0.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.