MudMarkdown.Toc 1.0.1

dotnet add package MudMarkdown.Toc --version 1.0.1
                    
NuGet\Install-Package MudMarkdown.Toc -Version 1.0.1
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="MudMarkdown.Toc" Version="1.0.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="MudMarkdown.Toc" Version="1.0.1" />
                    
Directory.Packages.props
<PackageReference Include="MudMarkdown.Toc" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add MudMarkdown.Toc --version 1.0.1
                    
#r "nuget: MudMarkdown.Toc, 1.0.1"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#addin nuget:?package=MudMarkdown.Toc&version=1.0.1
                    
Install MudMarkdown.Toc as a Cake Addin
#tool nuget:?package=MudMarkdown.Toc&version=1.0.1
                    
Install MudMarkdown.Toc as a Cake Tool
Language

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:

  1. Customizing the style of the TOC
  2. Specifying the corresponding MudMarkdown component for the generated TOC
  3. Automatically scrolling to the corresponding element
  4. Automatically tracking the TOC when the content changes

Demonstration

image-20250329193214217

You can clone the repository locally, start the sample project, and experience it!

Basic Usage

  1. Complete the configuration of MudBlazor and MudBlazor.Markdown.

  2. Install Package

    NuGet\Install-Package MudMarkdown.Toc -Version 1.0.1
    

    NuGet URL:NuGet Gallery | MudMarkdown.Toc 1.0.1

  3. 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>
    
  4. Import the namespace:

    @using MudBlazor.Markdown.Toc
    
  5. 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 πŸ˜‹

image-20250329201010291

  • 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 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.1 119 3/30/2025
1.0.0 118 3/30/2025