AugusteVN.Razor.PrismJS 1.1.7

dotnet add package AugusteVN.Razor.PrismJS --version 1.1.7
NuGet\Install-Package AugusteVN.Razor.PrismJS -Version 1.1.7
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="AugusteVN.Razor.PrismJS" Version="1.1.7" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add AugusteVN.Razor.PrismJS --version 1.1.7
#r "nuget: AugusteVN.Razor.PrismJS, 1.1.7"
#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.
// Install AugusteVN.Razor.PrismJS as a Cake Addin
#addin nuget:?package=AugusteVN.Razor.PrismJS&version=1.1.7

// Install AugusteVN.Razor.PrismJS as a Cake Tool
#tool nuget:?package=AugusteVN.Razor.PrismJS&version=1.1.7

Prism.js in Razor

The Prism.js syntax highlighter for HTML code blocks, encapsulated in Razor components.

Razor Components

The encapsulating components below, can be implemented on Razor pages or components.

<ImportPrism /> uses the JSRuntime to import the prism.js script at first render of this component's lifecycle method OnAfterRender. Optionally includes the prism.css link tag. When scripts loaded, an optional EventCallback OnPrismImported is invoked which means it is ready to invoke the highlighting functionality.

<PrismHighlighter /> uses the JSRuntime to invoke Prism.highlightAll at first render of this component's lifecycle method OnAfterRender. This component includes the <ImportPrism /> and uses its EventCallback to know when to fire the Prism.highlightAll.

Usage Example

<pre>
    <code class="language-csharp">app.UseCors(options =&gt;
                options.WithOrigins("https://www.morning-walk.com")
                    .AllowAnyMethod()
                    .AllowAnyHeader());
    </code>
</pre>
        
<PrismHighlighter />

Extension Methods

To invoke importing prism.js using the JSRuntime or to invoke Prism.highlightAll yourself, I included 2 extension methods.

ImportPrismJsAsync uses the JSRuntime to import the prism.js script.

ImportCustomPrismJsAsync uses the JSRuntime to import the custom-prism.js script which contains some extra helper methods.

PrismHighlightAllAsync uses the JSRuntime to invoke Prism.highlightAll.

PrismHighlightHtmlStringAsync uses the JSRuntime to invoke CustomPrism.highlightHtmlString with an HTML-string as parameter. Returns the HTML-string properly highlighted. Enable inlineStyles to apply the Prism theme styling inline on the result of the highlighted HTML-string this can be useful for constructing HTML emails.

Usage Example

@inject IJSRuntime JsRuntime

<textarea @onblur="HandleOnChange"></textarea>

@code {
    protected override void OnAfterRender(bool firstRender)
    {
        if (firstRender)
        {
            Task.Run(() => JsRuntime.ImportPrismJsAsync());
        }
    }
    
    private void HandleOnChange(FocusEventArgs e)
    {
        Task.Run(() => JsRuntime.PrismHighlightAllAsync());
    }
}

To see it in action, watch: Markdown to HTML with C# .NET.

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.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.1.7 110 4/7/2024
1.1.6 69 4/7/2024
1.1.5 70 4/7/2024
1.1.4 81 4/7/2024
1.1.3 70 4/6/2024
1.1.2 74 4/6/2024
1.0.4 201 11/18/2023
1.0.3 444 10/29/2023
1.0.2 68 10/29/2023
1.0.1 66 10/29/2023
1.0.0 68 10/29/2023

Refactor components.