Token导航 LogoToken导航TokenDH.com
前端设计需要联网github未标认证来源可访问许可证需确认审计提醒

syncfusion-aspnetcore-blockeditor同步融合 aspnetcore 块编辑器

Agent Skill

syncfusion-aspnetcore-blockeditor 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

210

周安装

9

GitHub Stars

公开资料未说明

下载量

73
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:syncfusion-aspnetcore-blockeditor(同步融合 aspnetcore 块编辑器)
来源仓库:https://github.com/syncfusion/aspnetcore-ui-components-skills
仓库路径:skills/syncfusion-aspnetcore-blockeditor
安装命令:
npx skills add https://github.com/syncfusion/aspnetcore-ui-components-skills --skill syncfusion-aspnetcore-blockeditor
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/syncfusion/aspnetcore-ui-components-skills --skill syncfusion-aspnetcore-blockeditor

简介

用于处理 GitHub 仓库、Issue 和 Pull Request 协作信息。

  • 适合围绕仓库状态和代码变更进行整理。
  • 通过 GitHub 仓库安装,支持主流宿主环境。
  • 使用前建议确认权限范围和维护状态。syncfusion-aspnetcore-blockeditor 属于前端设计类 Skill,可作为该场景下的辅助能力补充。
  • 注意可能涉及联网和命令执行,需谨慎使用。

SKILL.md

Syncfusion ASP.NET Core Block Editor Control

Overview

A comprehensive skill for implementing Syncfusion EJ2 Block Editor in ASP.NET Core applications using Razor Tag Helpers. This skill covers setup, block configuration, content manipulation, events, and best practices for creating block-based document editors.

The Syncfusion Block Editor is a versatile, block-based content editor that allows users to create and edit structured documents using discrete content blocks. Key capabilities include:

  • Multiple Block Types: Paragraph, Headings (1-4), Lists (Bullet, Numbered, Checklist), Code, Tables, Images, Quotes, Callouts, and more
  • Nested Structures: Support for collapsible headings, quotes, and callouts with child blocks
  • Rich Editor Menus: Slash commands, context menus, inline toolbars, and block action menus
  • Drag-and-Drop: Reorder blocks seamlessly with visual feedback
  • Content Sanitization: Built-in paste cleanup with configurable allowed styles and denied tags
  • Keyboard Shortcuts: Comprehensive shortcuts for formatting, block creation, and management
  • Undo/Redo: Configurable undo/redo stack (default 30 actions)
  • Globalization: Multi-language support and RTL layout support
  • Events: Rich event system for monitoring user interactions and content changes
  • Responsive Design: Adaptive UI that works on desktop and mobile devices

Documentation and Navigation Guide

Getting Started

📄 Read: references/getting-started.md

  • Installation and package setup
  • Basic BlockEditor implementation
  • CSS imports and theme selection
  • Creating the first Block Editor instance
  • Setting initial block content

Built-in Blocks

📄 Read: references/built-in-blocks.md

  • Block types overview (Paragraph, Heading, Lists, Code, Table, Embed, etc.)
  • Block properties (id, blockType, content, indent)
  • Nested block types (CollapsibleHeading, CollapsibleParagraph, Quote, Callout)
  • Parent-child relationships and hierarchy
  • Expanded state control and placeholders
  • CSS class customization and templates

Block Editor Menus

📄 Read: references/blockeditor-menus.md

  • Inline toolbar configuration and events
  • Block actions menu customization
  • Slash commands (/) for quick block insertion
  • Context menu configuration
  • Toolbar buttons and formatting actions

Drag-Drop and Content

📄 Read: references/drag-drop-and-content.md

  • Enable drag-and-drop functionality
  • Reordering blocks by dragging
  • Multiple block selection and movement
  • Visual feedback during drag operations
  • Content insertion and block positioning

Methods and API

📄 Read: references/methods-and-api.md

  • Block Management: addBlock, removeBlock, moveBlock, updateBlock, getBlock, getBlockCount
  • Selection & Cursor: setSelection, setCursorPosition, getSelectedBlocks, getRange, selectRange, selectBlock, selectAllBlocks
  • Focus Management: focusIn, focusOut
  • Formatting: executeToolbarAction, enableToolbarItems, disableToolbarItems
  • Data Export: getDataAsJson, getDataAsHtml, renderBlocksFromJson, parseHtmlToBlocks, print
  • Practical examples for each method category

Styling and Appearance

📄 Read: references/styling-and-appearance.md

  • CSS theming options (Material, Bootstrap, Fluent, Tailwind, Fabric themes)
  • Block-level styling and cssClass property
  • Typography options (bold, italic, underline, strikethrough)
  • Indentation and nested block styling
  • Placeholder text customization
  • Dark mode support and custom themes

Advanced Features

📄 Read: references/advanced-features.md

  • Paste cleanup and content sanitization (allowed styles, denied tags)
  • Keep format and plain text modes
  • Undo/Redo functionality and stack configuration
  • Keyboard shortcuts and customization
  • Read-only mode for view-only editors
  • XSS protection and HTML sanitizer
  • RTL (Right-to-Left) support
  • Globalization and multi-language localization

Quick Start Example

Basic Block Editor Setup

Step 1: Install NuGet Package

Install-Package Syncfusion.EJ2.AspNet.Core

Step 2: Register in _ViewImports.cshtml

@addTagHelper *, Syncfusion.EJ2

Step 3: Add CSS and Scripts in _Layout.cshtml

<head>
    <link rel="stylesheet" href="https://cdn.syncfusion.com/ej2/dist/ej2.min.css" />
</head>
<body>
    @RenderBody()

    <script src="https://cdn.syncfusion.com/ej2/dist/ej2.min.js"></script>
    <ejs-scripts></ejs-scripts>

    @RenderSection("Scripts", required: false)
</body>

Step 4: Create Block Editor in View

@using Syncfusion.EJ2.BlockEditor

<div id='blockeditor-container'>
    <ejs-blockeditor id="block-editor" blocks="@ViewBag.BlocksData"></ejs-blockeditor>
</div>

<style>
    #blockeditor-container {
        margin: 20px auto;
    }
</style>

Step 5: Configure Blocks in Controller

using Syncfusion.EJ2.BlockEditor;

public class BlockModel
{
    public string id { get; set; }
    public string blockType { get; set; }
    public object properties { get; set; }
    public List<object> content { get; set; }
}

public IActionResult Index()
{
    var blocks = new List<BlockModel>
    {
        new BlockModel
        {
            id = "heading-1",
            blockType = "Heading",
            properties = new { level = 1 },
            content = new List<object>
            {
                new { contentType = "Text", content = "Welcome to Block Editor" }
            }
        },
        new BlockModel
        {
            id = "paragraph-1",
            blockType = "Paragraph",
            content = new List<object>
            {
                new { contentType = "Text", content = "Start creating your content with blocks!" }
            }
        }
    };

    ViewBag.BlocksData = blocks;
    return View();
}

Common Patterns

Pattern 1: Add New Block Dynamically

var blockEditorObj = ej.base.getInstance(document.getElementById('block-editor'), ejs.blockeditor.BlockEditor);

const newBlock = {
    id: 'new-paragraph',
    blockType: 'Paragraph',
    content: [
        {
            contentType: "Text",
            content: 'This is a newly added block'
        }
    ]
};

// Add after a specific block
blockEditorObj.addBlock(newBlock, 'existing-block-id', true);

Pattern 2: Nested Collapsible Structure

new BlockModel
{
    blockType = "CollapsibleHeading",
    content = new List<object>
    {
        new { contentType = "Text", content = "Section Title" }
    },
    properties = new
    {
        level = 1,
        isExpanded = true,
        children = new List<BlockModel>
        {
            new BlockModel
            {
                blockType = "Paragraph",
                content = new List<object>
                {
                    new { contentType = "Text", content = "Hidden content goes here" }
                }
            }
        }
    }
}

Pattern 3: Configure Paste Cleanup

<ejs-blockeditor id="block-editor">
    <e-blockeditor-pastesettings
        allowedStyles="@(new string[] { "font-weight", "font-style", "text-decoration" })"
        deniedTags="@(new string[] { "script", "iframe", "form" })"
        keepFormat="true">
    </e-blockeditor-pastesettings>
</ejs-blockeditor>

Pattern 4: Custom Slash Commands

var commandMenuItems = new List<object>
{
    new
    {
        id = "timestamp",
        groupHeader = "Actions",
        label = "Insert Timestamp",
        iconCss = "e-icons e-schedule"
    },
    new
    {
        id = "separator",
        type = "Divider",
        groupHeader = "Utility",
        label = "Insert Divider",
        iconCss = "e-icons e-divider"
    }
};

ViewBag.CommandMenuItems = commandMenuItems;

Pattern 5: Readonly Editor for Display

<ejs-blockeditor id="block-editor"
                 readOnly="true"
                 blocks="@ViewBag.BlocksData">
</ejs-blockeditor>

Key Properties

PropertyTypeDescriptionDefault
idstringUnique identifier for the Block Editor instance-
blocksListInitial block content[]
heightstringHeight of the editor (px, vh, %)auto
widthstringWidth of the editor (px, %)100%
readOnlyboolEnable read-only modefalse
cssClassstringCustom CSS class for styling-
enableDragAndDropboolEnable block drag-and-droptrue
enableRtlboolEnable right-to-left layoutfalse
localestringLocalization culture (e.g., "de", "es")"en"
undoRedoStackintNumber of undo/redo steps30
keyConfigobjectKeyboard shortcuts configurationdefault shortcuts

Common Use Cases

  1. Blog Post Editor - Create a structured blog editor with headings, paragraphs, lists, code snippets, and images
  2. Knowledge Base - Build hierarchical documentation with collapsible sections and nested content
  3. Newsletter Template Builder - Design email templates with predefined blocks
  4. Content Management System - Manage modular content with drag-and-drop block reordering
  5. Documentation Platform - Create technical documentation with code blocks, tables, and callouts
  6. Form Builder - Create dynamic forms with conditional block visibility
  7. Collaborative Editing - Implement shared document editing with block-level permissions

Workflow Pattern

When implementing a Syncfusion Block Editor in ASP.NET Core:

  1. Install and Setup - Follow Getting Started guide for package installation and registration
  2. Define Block Structure - Choose block types and configure them in references/built-in-blocks.md
  3. Initialize Editor - Create Block Editor instance with initial blocks
  4. Configure Features - Enable menus, drag-drop, paste cleanup as needed
  5. Handle Events - Bind to events for content validation, logging, or integration
  6. Customize Appearance - Apply CSS themes, custom classes, and styling
  7. Implement Methods - Use API methods for programmatic content manipulation
  8. Test and Optimize - Verify functionality and performance

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.33%
按下载量换算27

Claude

29.28%
按下载量换算21

Cursor

16.47%
按下载量换算12

Gemini CLI

8.72%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills