agentsclimarketplace

Syncfusion javascript markdown converter

Skill syncfusion/javascript-ui-controls-skills/skills/syncfusion-javascript-markdown-converter

Guides implementation of the Syncfusion TypeScript Markdown Converter (@syncfusion/ej2-markdown-converter). Use this skill when the user needs to convert Markdown text to HTML, use the toHtml method, 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. Trigger when user mentions markdown to HTML conversion, MarkdownConverter, toHtml, ej2-markdown-converter, markdown preview, or RTE markdown mode.From its SKILL.md

Install
npx -y skills add syncfusion/javascript-ui-controls-skills --skill syncfusion-javascript-markdown-converter

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • 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

4.7 KB, 956 tokens by cl100k_base, as published. Nobody here has run it

Syncfusion TypeScript Markdown Converter

The Syncfusion TypeScript Markdown Converter (@syncfusion/ej2-markdown-converter) is a lightweight utility 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.


Navigation Guide

Getting Started

πŸ“„ Read: references/getting-started.md

  • Installing the @syncfusion/ej2-markdown-converter package
  • Importing MarkdownConverter into a TypeScript project
  • Running a basic Markdown-to-HTML conversion
  • Required CSS and theme setup

toHtml API

πŸ“„ Read: references/tohtml-api.md

  • toHtml method signature and parameters
  • Supported Markdown elements (headings, lists, tables, links, images, inline styles)
  • Return value and usage patterns
  • Simple conversion code examples

Configurable Options

πŸ“„ Read: references/configurable-options.md

  • MarkdownConverterOptions interface
  • async β€” asynchronous conversion for large content
  • gfm β€” GitHub Flavored Markdown support
  • lineBreak β€” single line breaks as <br> elements
  • silence β€” suppress errors on invalid Markdown
  • When and why to use each option

Rich Text Editor Integration

πŸ“„ Read: references/richtexteditor-integration.md

  • Combining @syncfusion/ej2-richtexteditor with @syncfusion/ej2-markdown-converter
  • Setting editorMode: 'Markdown' on the RTE
  • Live preview on keyup using toHtml
  • Full preview toggle pattern
  • Side-by-side Splitter layout
  • Toolbar configuration for Markdown mode

Quick Start

Install the package and run a minimal conversion:

npm install @syncfusion/ej2-markdown-converter
import { MarkdownConverter } from '@syncfusion/ej2-markdown-converter';

const markdownContent = '# Hello World\nThis is **Markdown** text.';
const htmlOutput = MarkdownConverter.toHtml(markdownContent);
console.log(htmlOutput);
// Output: <h1>Hello World</h1><p>This is <strong>Markdown</strong> text.</p>

Common Patterns

Convert with all options enabled

import { MarkdownConverter } from '@syncfusion/ej2-markdown-converter';

const html = 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

textArea.addEventListener('keyup', () => {
  previewElement.innerHTML = MarkdownConverter.toHtml(textArea.value) as string;
});

Integrate with Syncfusion RTE in Markdown mode

import { RichTextEditor, MarkdownEditor, Toolbar } from '@syncfusion/ej2-richtexteditor';
import { MarkdownConverter } from '@syncfusion/ej2-markdown-converter';
RichTextEditor.Inject(MarkdownEditor, Toolbar);

const rte = new RichTextEditor({
  editorMode: 'Markdown',
  height: '400px'
});
rte.appendTo('#editor');

Key Props

OptionTypeDefaultPurpose
asyncbooleanfalseAsync conversion for large payloads
gfmbooleantrueGitHub Flavored Markdown support
lineBreakbooleanfalseSingle newlines β†’ <br>
silencebooleanfalseSkip invalid Markdown instead of throwing

Common Use Cases

  • Static content rendering β€” Convert user-authored Markdown from a textarea or API into HTML for display
  • Live editor preview β€” Pair with Syncfusion RTE in Markdown mode for real-time HTML preview
  • Side-by-side editing β€” Use Syncfusion Splitter to show editor and rendered HTML simultaneously
  • CMS / documentation tools β€” Process Markdown stored in databases or files before rendering in the browser

What ships with it: 4 files

19.6 KB alongside SKILL.md

Keep looking

Skills are one crate of 326,506. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.