Blism 1.3.2

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

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 Code="@CSharpSource" Tokenizer="CSharpTokenizer.Instance" Highlighter="CSharpDarkHighlighter.Instance"/>

Supported languages

  • C#
  • Dart
  • YAML
  • Bash

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.  net9.0 was computed.  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 (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.3.2 175 20 days ago
1.3.1 132 20 days ago
1.3.0 129 2 months ago
1.2.4 123 2 months ago
1.2.3 101 2 months ago
1.2.2 91 2 months ago
1.2.1 92 2 months ago
1.2.0 133 2 months ago
1.1.0 557 6 months ago
1.0.0 134 6 months ago

# 1.3.2
- Noop release
# 1.3.1
- Fix parsing of unquoted URLs in Bash
# 1.3.0
- Added `Style` parameter to all `SyntaxHighlighter` components
# 1.2.4
- Noop release
# 1.2.3
- Noop release
# 1.2.2
- Noop release
# 1.2.1
- Noop release
# 1.2.0
- Added `BashSyntaxHighlighter` component
- Added `CSharpSyntaxHighlighter` component
- Added `DartSyntaxHighlighter` component
- Added `YamlSyntaxHighlighter` component
# 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