🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@nvidia-elements/markdown

Package Overview
Dependencies
Maintainers
2
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nvidia-elements/markdown

A suite of markdown components and utilities.

Source
npmnpm
Version
0.0.9
Version published
Weekly downloads
54
Maintainers
2
Weekly downloads
 
Created
Source

@nvidia-elements/markdown

A Web Component for rendering markdown content with full styling support.

  • Documentation
  • Changelog
  • GitHub Repo
  • npm

Getting Started

npm install @nvidia-elements/markdown

Usage

Markdown Content (via source property)

Perfect for dynamic content and programmatic updates:

<nve-markdown source="# Hello World

This is **bold** and *italic* text with a [link](https://example.com).

- List item 1
- List item 2

```javascript
const code = 'example';
```"></nve-markdown>
// Programmatic updates
const element = document.querySelector('nve-markdown');
element.source = '# Updated Content\n\nNew markdown content here.';

Features

  • Markdown Parsing: Full markdown support with syntax highlighting, links, lists, and more
  • HTML Templates: Support for raw HTML content via template elements
  • Two Input Modes: Clear separation between markdown (source) and HTML (template)
  • Performance Optimized: Lazy-loaded markdown parser for better initial load times
  • Design System Integration: Styled with NVE design tokens and CSS custom properties

Keywords

markdown

FAQs

Package last updated on 13 May 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts