Syncfusion aspnetmvc markdown converter
Skill syncfusion/aspnetmvc-ui-components-skills/skills/syncfusion-aspnetmvc-markdown-converter
Guides implementation of the Syncfusion ASP.NET MVC Markdown Converter (Syncfusion.EJ2.MVC5). Use this skill when the user needs to convert Markdown text to HTML, use the MarkdownConverter utility, configure MarkdownConverterOptions (async, gfm, lineBreak, silence), or integrate the Markdown Converter with the Syncfusion Rich Text Editor for live preview or side-by-side editing in ASP.NET MVC. Trigger when user mentions markdown to HTML conversion, MarkdownConverter, toHtml, markdown preview, or RTE markdown mode in an ASP.NET MVC project.From its SKILL.md
npx -y skills add syncfusion/aspnetmvc-ui-components-skills --skill syncfusion-aspnetmvc-markdown-converterAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
3 things to look at
- 29 days oldThe repository was created 29 days ago. New is not bad, but a brand new repository carrying a familiar-sounding name is the shape a typosquat arrives in, and there has been no time for anyone else to find a problem with it.
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
5.3 KB, ~1.1k tokens by cl100k_base, as published. Nobody here has run it
Syncfusion ASP.NET MVC Markdown Converter
The Syncfusion ASP.NET MVC Markdown Converter is a lightweight client-side utility (included with the Syncfusion.EJ2.MVC5 NuGet package) that transforms Markdown text into clean, semantic HTML. It supports all common Markdown elements β headings, lists, tables, links, images, and inline styles β and integrates seamlessly with the Syncfusion Rich Text Editor for live editing and preview workflows in ASP.NET MVC applications.
Navigation Guide
Getting Started
π Read: references/getting-started.md
- Installing the
Syncfusion.EJ2.MVC5NuGet package - Referencing EJ2 scripts and styles in
_Layout.cshtml - Running a basic Markdown-to-HTML conversion via JavaScript
- Required CSS and theme setup
toHtml API
π Read: references/tohtml-api.md
ej.markdownConverter.toHtmlmethod signature and parameters- Supported Markdown elements (headings, lists, tables, links, images, inline styles)
- Return value and usage patterns
- Simple conversion code examples in Razor/JavaScript
Configurable Options
π Read: references/configurable-options.md
MarkdownConverterOptionsconfiguration objectasyncβ asynchronous conversion for large contentgfmβ GitHub Flavored Markdown supportlineBreakβ single line breaks as<br>elementssilenceβ suppress errors on invalid Markdown- When and why to use each option
Rich Text Editor Integration
π Read: references/richtexteditor-integration.md
- Combining the Syncfusion RTE with the Markdown Converter in ASP.NET MVC
- Setting
EditorMode(EditorMode.Markdown)on the RTE HTML helper - Live preview on keyup using
ej.markdownConverter.toHtml - Full preview toggle pattern
- Side-by-side Splitter layout in Razor views
- Toolbar configuration for Markdown mode
Quick Start
Add the NuGet package and run a minimal conversion in a Razor view:
NuGet Package Manager Console:
Install-Package Syncfusion.EJ2.MVC5
Controller (HomeController.cs):
public ActionResult Index()
{
ViewBag.value = "# Hello World\nThis is **Markdown** text.";
return View();
}
View (Index.cshtml):
@(Html.EJS().RichTextEditor("editor")
.EditorMode(Syncfusion.EJ2.RichTextEditor.EditorMode.Markdown)
.Value(ViewBag.value)
.Render())
<div id="preview"></div>
<script>
document.addEventListener('DOMContentLoaded', function () {
var markdownContent = '# Hello World\nThis is **Markdown** text.';
var htmlOutput = ej.markdownConverter.toHtml(markdownContent);
document.getElementById('preview').innerHTML = htmlOutput;
});
</script>
Common Patterns
Convert with all options enabled
var html = ej.markdownConverter.toHtml(markdownContent, {
async: true, // Non-blocking for large content
gfm: true, // GitHub Flavored Markdown
lineBreak: true, // Treat single newlines as <br>
silence: true // Suppress parse errors
});
Live preview on user input
document.getElementById('markdownInput').addEventListener('keyup', function () {
document.getElementById('preview').innerHTML =
ej.markdownConverter.toHtml(this.value);
});
Integrate with Syncfusion RTE in Markdown mode
Controller:
public ActionResult Index()
{
ViewBag.value = "# Hello\nType **Markdown** here.";
return View();
}
View (Index.cshtml):
@using Syncfusion.EJ2.RichTextEditor
@(Html.EJS().RichTextEditor("editor")
.EditorMode(EditorMode.Markdown)
.Height("400px")
.Value(ViewBag.value)
.Render())
Key Options
| Option | Type | Default | Purpose |
|---|---|---|---|
async | boolean | false | Async conversion for large payloads |
gfm | boolean | true | GitHub Flavored Markdown support |
lineBreak | boolean | false | Single newlines β <br> |
silence | boolean | false | Skip invalid Markdown instead of throwing |
Common Use Cases
- Static content rendering β Convert user-authored Markdown from a textarea or API into HTML for display within an MVC view
- Live editor preview β Pair with Syncfusion RTE in Markdown mode for real-time HTML preview in a Razor view
- Side-by-side editing β Use Syncfusion Splitter to show editor and rendered HTML simultaneously in a Razor layout
- CMS / documentation tools β Process Markdown stored in databases or files and render it inside ASP.NET MVC views
What ships with it: 4 files
22.9 KB alongside SKILL.md
references/
- configurable-options.md5.5 KB
- getting-started.md3.4 KB
- richtexteditor-integration.md10.0 KB
- tohtml-api.md4.0 KB