RTBlazorfied 1.0.254

dotnet add package RTBlazorfied --version 1.0.254
                    
NuGet\Install-Package RTBlazorfied -Version 1.0.254
                    
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="RTBlazorfied" Version="1.0.254" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="RTBlazorfied" Version="1.0.254" />
                    
Directory.Packages.props
<PackageReference Include="RTBlazorfied" />
                    
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 RTBlazorfied --version 1.0.254
                    
#r "nuget: RTBlazorfied, 1.0.254"
                    
#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.
#:package RTBlazorfied@1.0.254
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=RTBlazorfied&version=1.0.254
                    
Install as a Cake Addin
#tool nuget:?package=RTBlazorfied&version=1.0.254
                    
Install as a Cake Tool

RT Blazorfied

Author: Ryan Kueter
Updated: December, 2024

About

RT Blazorfied HTML Editor is a free .NET library available from the NuGet Package Manager that allows Blazor developers to easily add a rich text box / html editor to their Blazor application. The editor uses Google's Font Icons. It doesn't reference the icon library. However, it does embed .svg versions of those icons so they are customizable. It also uses the shadow DOM to isolate the HTML from inheriting the existing page styles. Because of that, it provides a preview window for the user to view the live page if the style sheets are applied to the host application. Users are also able to add CSS classes to many components allowing them to customize their appearance.

Targets:

  • .NET 8 - .NET 9

Features:

  • Shortcut Keys
  • Button Visibility
  • Copy and Taste Content and Tables
  • Highly Customized Appearance
  • Lists
  • Links
  • Tables
  • Colors and Highlighting
  • Images
  • Video
  • Audio
  • PDF Documents
  • HTML Pages
  • Code Blocks
  • Block Quotes

Adding the HTML Editor

Add the JavaScript Reference

Add the following reference to the end of your index.html file:

<script src="_content/RTBlazorfied/js/RTBlazorfied.js"></script>

Add the Element

In this example, the @Html is the html string. This height and width will override those specified in the configuration options.

@using RichTextBlazorfied

<RTBlazorfied @ref="box" @bind-Value="@Html" Height="500px" Width="1000px" />

The element reference provides another way to get the html or plaintext:

private RTBlazorfied? box { get; set; }

private async Task<string?> GetHtml() =>
        await box!.GetHtmlAsync();

private async Task<string?> GetPlainText() =>
        await box!.GetPlainTextAsync();

Configure the Options

RTBlazorfied was designed to allow developers to highly customize the appearance of the rich textbox with the following configuration options:

<RTBlazorfied @bind-Value="@Html" Options="@GetOptions()" />

CSS variables, e.g., var(--my-variable) are interchangeable with these styles. And omitting the ButtonVisibility options will display all the buttons.

public Action<IRTBlazorfiedOptions> GetOptions() => (o =>
{
    o.ToolbarStyles(o =>
    {
        o.BackgroundColor = "#00FF00";
        o.BorderColor = "var(--border-color)";
        o.BorderWidth = "1px";
        o.BorderStyle = "solid";
        o.BorderRadius = "10px 0px";
        o.DropdownBackgroundColor = "var(--background-color)";
        o.DropdownTextColor = "#FFFFFF";
        o.DropdownBackgroundColorHover = "#777777";
        o.DropdownTextColorHover = "#FFFFAA";
    });
    o.ModalStyles(o =>
    {
        o.RemoveCSSClassInputs();
        o.BackgroundColor = "#333333";
        o.TextColor = "#FFFFAA";
        o.TextSize = "20px";
        o.TextFont = "Comic Sans MS";
        o.TextboxBackgroundColor = "#333333"; // Texbox refers to inputs
        o.TextboxTextColor = "#FFFFAA";
        o.TextboxBorderColor = "#FFFFAA";
        o.CheckboxAccentColor = "#FFFFAA";
    });
    o.ButtonStyles(o =>
    {
        o.TextColor = "#ff0000";
        o.TextSize = "30px";
        o.TextFont = "Comic Sans MS";
        o.BackgroundColor = "#0000FF";
        o.BackgroundColorHover = "inherit";
        o.BackgroundColorSelected = "inherit";
        o.BorderColor = "#FFF000";
        o.BorderColorHover = "#FF0000";
        o.BorderColorSelected = "#0000FF";
        o.BorderStyle = "solid";
        o.BorderRadius = "0px";
        o.BorderWidth = "1px";
    });
    o.EditorStyles(o =>
    {
        o.RemoveResizeHandle();
        o.Width = "500px";
        o.Height = "700px";
        o.BorderRadius = "10px";
        o.BoxShadow = "3px 3px 5px 6px #ccc";
        o.BorderStyle = "dotted";
        o.BorderWidth = "10px";
        o.BorderColor = "#FF0000";
    });
    o.ContentStyles(o =>
    {
        o.ContentBoxShadow = "inset 0 0 7px #eee";
        o.BackgroundColor = "#FFFF99";
        o.TextColor = "#FFFFAA";
        o.TextSize = "30px";
        o.TextFont = "Comic Sans MS";
    });
    o.ScrollbarStyles(o =>
    {
        o.Width = "5px";
        o.Opacity = "0.5";
        o.ThumbBackground = "#0000FF";
        o.ThumbBackgroundHover = "#00FFFF";
        o.BackgroundColor = "transparent";
        o.ThumbBorderRadius = "10px";
    });
    o.ButtonVisibility(o =>
    {
        o.ClearAll();
        o.Size = true;
        o.Font = true;
        o.Format = true;
        o.Bold = true;
        o.Italic = true;
        o.Underline = true;
        o.Strikethrough = true;
        o.Subscript = true;
        o.Superscript = true;
        o.TextColor = true;
        o.AlignLeft = true;
        o.AlignCenter = true;
        o.AlignRight = true;
        o.AlignJustify = true;
        o.Copy = true;
        o.Cut = true;
        o.Delete = true;
        o.SelectAll = true;
        o.Image = true;
        o.Link = true;
        o.OrderedList = true;
        o.UnorderedList = true;
        o.Indent = true;
        o.Undo = true;
        o.Redo = true;
        o.Quote = true;
        o.CodeBlock = true;
        o.EmbedMedia = true;
        o.ImageUpload = true;
        o.HtmlView = true;
        o.Preview = true;

        // Dividers
        o.TextStylesDivider = false;
        o.FormatDivider = false;
        o.TextColorDivider = false;
        o.AlignDivider = false;
        o.ActionDivider = false;
        o.ListDivider = false;
        o.MediaDivider = false;
        o.HistoryDivider = false;
    });
});

Shortcut Keys

Bold: Ctrl + B
Italic: Ctrl + I
Underline: Ctrl + U
Strikethrough: Ctrl + D
Subscript: Ctrl + =
Superscript: Ctrl + Shift + [+]
Text Color: Ctrl + Shift + C
Text Background Color: Ctrl + shift + B
Align Left: Ctrl + L
Align Center: Ctrl + E
Align Right: Ctrl + R
Align Justify: Ctrl + J
Cut: Ctrl + X
Copy: Ctrl + C
Paste: Ctrl + V
Select All: Ctrl + A
Ordered List: Ctrl + Shift + O
Unordered List: Ctrl + Shift + U
Increase Indent: Tab
Decrease Indent: Shift + Tab
Insert Link: Ctrl + Shift + K
Insert Image: Ctrl + Shift + I
Insert Quote: Ctrl + Shift + Q
Insert Media: Ctrl + Shift + M
Insert Table: Ctrl + Shift + L
Insert Code Block: Ctrl + Shift + [*]
Undo: Ctrl + Z
Redo: Ctrl + Y
Format: Ctrl + Shift + [D, P, 1, 2, 3, and so on]
Size: Ctrl + Shift + [<, >]
Toggle Code and HTML: Ctrl + Shift + A

Contributions

This project is being developed for free by me, Ryan Kueter, in my spare time. So, if you would like to contribute, please submit your ideas on the Github project page.

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 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.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.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.254 136 12/5/2024
1.0.253 210 8/18/2024
1.0.252 145 8/18/2024
1.0.251 155 8/18/2024
1.0.250 139 8/18/2024
1.0.249 161 8/18/2024
1.0.248 133 8/18/2024
1.0.247 143 8/15/2024
1.0.246 134 8/15/2024
1.0.245 149 8/14/2024
1.0.244 131 8/14/2024
1.0.243 161 8/13/2024
1.0.242 159 8/13/2024
1.0.241 137 8/13/2024
1.0.240 145 8/13/2024
1.0.239 100 8/4/2024
1.0.238 102 8/4/2024
1.0.237 98 8/3/2024
1.0.236 95 8/3/2024
1.0.235 103 8/3/2024
1.0.234 104 8/2/2024
1.0.233 123 8/2/2024
1.0.232 102 8/1/2024
1.0.231 113 8/1/2024
1.0.230 106 8/1/2024
1.0.229 97 7/31/2024
1.0.228 91 7/31/2024
1.0.227 95 7/31/2024
1.0.226 97 7/30/2024
1.0.225 99 7/30/2024
1.0.224 94 7/30/2024
1.0.223 80 7/29/2024
1.0.222 79 7/29/2024
1.0.221 77 7/29/2024
1.0.220 88 7/29/2024
1.0.219 93 7/29/2024
1.0.218 81 7/29/2024
1.0.217 95 7/28/2024
1.0.215 94 7/28/2024
1.0.214 88 7/28/2024
1.0.213 91 7/27/2024
1.0.212 94 7/26/2024
1.0.211 108 7/26/2024
1.0.210 104 7/26/2024
1.0.209 103 7/26/2024
1.0.208 93 7/26/2024
1.0.207 114 7/25/2024
1.0.206 90 7/25/2024
1.0.205 98 7/25/2024
1.0.204 89 7/25/2024
1.0.203 94 7/25/2024
1.0.202 109 7/25/2024
1.0.201 101 7/25/2024
1.0.200 104 7/25/2024
1.0.199 97 7/25/2024
1.0.198 104 7/24/2024
1.0.197 102 7/24/2024
1.0.196 100 7/24/2024
1.0.195 93 7/24/2024
1.0.194 94 7/24/2024
1.0.192 84 7/24/2024
1.0.191 111 7/23/2024
1.0.190 116 7/23/2024
1.0.189 121 7/23/2024
1.0.188 143 7/23/2024
1.0.187 110 7/23/2024
1.0.186 108 7/23/2024
1.0.185 114 7/22/2024
1.0.184 113 7/22/2024
1.0.183 134 7/22/2024
1.0.182 134 7/21/2024
1.0.181 125 7/21/2024
1.0.180 127 7/21/2024
1.0.179 135 7/21/2024
1.0.178 123 7/21/2024
1.0.177 123 7/21/2024
1.0.176 129 7/21/2024
1.0.175 139 7/21/2024
1.0.174 138 7/20/2024
1.0.173 135 7/20/2024
1.0.172 128 7/19/2024
1.0.171 126 7/19/2024
1.0.170 130 7/19/2024
1.0.169 131 7/18/2024
1.0.168 127 7/18/2024
1.0.167 117 7/18/2024
1.0.166 139 7/18/2024
1.0.165 118 7/18/2024
1.0.164 121 7/18/2024
1.0.163 133 7/18/2024
1.0.162 120 7/17/2024
1.0.161 128 7/17/2024
1.0.160 132 7/17/2024
1.0.159 135 7/17/2024
1.0.158 104 7/17/2024
1.0.157 116 7/17/2024
1.0.156 160 7/16/2024
1.0.155 119 7/16/2024
1.0.154 116 7/16/2024
1.0.153 114 7/16/2024
1.0.152 107 7/16/2024
1.0.151 124 7/16/2024
1.0.150 118 7/16/2024
1.0.149 129 7/15/2024
1.0.148 120 7/14/2024
1.0.147 123 7/14/2024
1.0.146 123 7/13/2024
1.0.145 121 7/13/2024
1.0.144 127 7/13/2024
1.0.143 144 7/13/2024
1.0.142 128 7/13/2024
1.0.141 121 7/13/2024
1.0.140 119 7/13/2024
1.0.139 117 7/13/2024
1.0.138 118 7/12/2024
1.0.137 124 7/11/2024
1.0.136 122 7/11/2024
1.0.135 124 7/11/2024
1.0.134 120 7/11/2024
1.0.133 122 7/10/2024
1.0.131 123 7/9/2024
1.0.130 126 7/7/2024
1.0.129 125 7/7/2024
1.0.128 115 7/7/2024
1.0.127 117 7/7/2024
1.0.126 133 7/7/2024
1.0.125 120 7/6/2024
1.0.124 144 7/6/2024
1.0.123 131 7/5/2024
1.0.122 120 7/5/2024
1.0.121 124 7/5/2024
1.0.120 115 7/5/2024
1.0.119 123 7/5/2024
1.0.118 124 7/5/2024
1.0.117 117 7/5/2024
1.0.116 120 7/5/2024
1.0.115 113 7/5/2024
1.0.114 111 7/5/2024
1.0.113 134 7/5/2024
1.0.112 116 7/5/2024
1.0.111 137 7/4/2024
1.0.110 143 7/4/2024
1.0.109 120 7/4/2024
1.0.108 125 7/4/2024
1.0.107 143 7/4/2024
1.0.106 136 7/4/2024
1.0.105 127 7/4/2024
1.0.104 140 7/4/2024
1.0.103 124 7/4/2024
1.0.102 130 7/4/2024
1.0.101 122 7/4/2024
1.0.100 134 7/3/2024
1.0.99 123 7/3/2024
1.0.98 137 7/3/2024
1.0.97 119 7/3/2024
1.0.96 128 7/3/2024
1.0.95 116 7/3/2024
1.0.94 113 7/3/2024
1.0.93 162 7/3/2024
1.0.92 125 7/3/2024
1.0.91 142 7/3/2024
1.0.90 124 7/2/2024
1.0.89 135 7/2/2024
1.0.88 129 7/2/2024
1.0.87 132 7/2/2024
1.0.86 126 7/2/2024
1.0.85 123 7/2/2024
1.0.84 126 7/2/2024
1.0.83 131 7/2/2024
1.0.82 130 7/2/2024
1.0.81 126 7/1/2024
1.0.80 133 7/1/2024
1.0.79 125 7/1/2024
1.0.78 137 6/30/2024
1.0.77 130 6/30/2024
1.0.76 130 6/30/2024
1.0.75 149 6/30/2024
1.0.74 141 6/28/2024
1.0.73 126 6/28/2024
1.0.72 129 6/28/2024
1.0.71 134 6/28/2024
1.0.70 124 6/27/2024
1.0.69 124 6/26/2024
1.0.68 127 6/26/2024
1.0.67 132 6/22/2024
1.0.66 142 6/22/2024
1.0.65 138 6/21/2024
1.0.64 141 6/20/2024
1.0.63 129 6/19/2024
1.0.62 135 6/19/2024
1.0.61 134 6/19/2024
1.0.60 142 6/18/2024
1.0.59 124 6/17/2024
1.0.58 118 6/17/2024
1.0.57 119 6/17/2024
1.0.56 116 6/17/2024
1.0.55 122 6/17/2024
1.0.54 122 6/17/2024
1.0.53 128 6/17/2024
1.0.52 116 6/17/2024
1.0.51 127 6/17/2024
1.0.50 129 6/17/2024
1.0.49 125 6/17/2024
1.0.48 123 6/17/2024
1.0.47 130 6/17/2024
1.0.46 126 6/16/2024
1.0.45 111 6/16/2024
1.0.44 136 6/16/2024
1.0.43 136 6/16/2024
1.0.42 126 6/16/2024
1.0.41 141 6/16/2024
1.0.40 132 6/16/2024
1.0.39 135 6/16/2024
1.0.38 162 6/16/2024
1.0.37 146 6/16/2024
1.0.36 141 6/14/2024
1.0.35 117 6/13/2024
1.0.34 123 6/13/2024
1.0.33 123 6/13/2024
1.0.32 122 6/13/2024
1.0.31 114 6/12/2024
1.0.30 117 6/12/2024
1.0.29 117 6/12/2024
1.0.28 115 6/11/2024
1.0.27 121 6/11/2024
1.0.26 113 6/10/2024
1.0.25 117 6/10/2024
1.0.24 117 6/10/2024
1.0.23 130 6/10/2024
1.0.22 123 6/10/2024
1.0.21 128 6/8/2024
1.0.20 129 6/8/2024
1.0.19 125 6/8/2024
1.0.18 135 6/8/2024
1.0.17 128 6/8/2024
1.0.16 122 6/7/2024
1.0.15 127 6/7/2024
1.0.14 127 6/7/2024
1.0.13 122 6/7/2024
1.0.12 122 6/7/2024
1.0.11 126 6/7/2024
1.0.9 128 6/6/2024
1.0.8 134 6/6/2024
1.0.7 121 6/6/2024
1.0.6 118 6/6/2024
1.0.5 129 6/6/2024
1.0.4 133 6/6/2024
1.0.3 134 6/6/2024
1.0.2 122 6/6/2024
1.0.1 126 6/6/2024

Added a .NET 9 target.