Blism 1.1.0

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

// Install Blism as a Cake Tool
#tool nuget:?package=Blism&version=1.1.0                

Blism

Blism is a simple syntax highlighter library for Blazor.

Screenshot

Installation

Install the package from NuGet:

dotnet add package Blism.Language.CSharp # Repeat for other languages

Usage

<SyntaxHighlighter TLanguage="CSharpHighlighterLanguage" TTokenType="CSharpTokenType" Code="@CSharpSource" Language="CSharpHighlighterLanguage.Instance"/>

Supported languages

  • C#
  • Dart
  • YAML

License

This project is licensed under the MIT License - see the LICENSE.md file for details.

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 (4)

Showing the top 4 NuGet packages that depend on Blism:

Package Downloads
Blism.Language.Yaml

A simple syntax highlighter library for Blazor.

Blism.Language.Bash

A simple syntax highlighter library for Blazor.

Blism.Language.Dart

A simple syntax highlighter library for Blazor.

Blism.Language.CSharp

A simple syntax highlighter library for Blazor.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.1.0 233 10/15/2024
1.0.0 111 10/15/2024

# 1.1.0
- Added support for tokenizing Bash
- Added dark theme for Bash
- Made highlighter methods virtual so they can be overridden
# 1.0.0
- Initial release
- Added support for tokenizing C#, Dart and YAML
- Added dark themes for C#, Dart and YAML
- Added a `SyntaxHighlighter` blazor component