Blazor.Editor
2.0.1
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package Blazor.Editor --version 2.0.1
NuGet\Install-Package Blazor.Editor -Version 2.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="Blazor.Editor" Version="2.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Blazor.Editor --version 2.0.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Blazor.Editor, 2.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.
// Install Blazor.Editor as a Cake Addin #addin nuget:?package=Blazor.Editor&version=2.0.1 // Install Blazor.Editor as a Cake Tool #tool nuget:?package=Blazor.Editor&version=2.0.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
BlazorEditor
It is a quilljs based blazor editor.
it's accept ReadOnly, Placeholder, Theme, Height etc
Very simple to use add nuget package and use it.
In this version 2.0.1 has update ui and core functions improvements like image search, resize, align etc and also package size optimized.
How to add package into project
dotnet add package Blazor.Editor --version 2.0.1
@page "/article"
@rendermode InteractiveServer
@using Blazor.Editor
<div>
@*GalleryUrl is endpoint of your server's image gallery to show image list, if api endpoint is not provided then url image link is still working*@
<Editor @ref="@_quillNative" GalleryUrl="/api/images/gallery" />
</div>
<div>
<button class="btn btn-primary" @onclick="SetHTMLAsync">Set HTML</button>
<button class="btn btn-primary" @onclick="GetHTMLAsync">Get HTML</button>
</div>
<div>
@_quillContent
</div>
@code {
private string? _quillContent;
private Editor? _quillNative;
public async Task SetHTMLAsync()
{
string img = "<p><img src='https://images.stockcake.com/public/5/0/2/502bbf64-d559-4efe-bba5-59ef7ffad5a8/toddler-baking-cookies-stockcake.jpg' /></p>";
await _quillNative!.SetHTMLAsync(img);
StateHasChanged();
}
public async Task GetHTMLAsync()
{
_quillContent = await _quillNative!.GetHTMLAsync();
StateHasChanged();
}
}
Editor
Image selection
Image into editor
Resize and Format options
Product | Versions 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.
-
net8.0
- Microsoft.AspNetCore.Components.Web (>= 8.0.8)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.