Socket
Socket
Sign inDemoInstall

rehype-sanitize

Package Overview
Dependencies
Maintainers
2
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

rehype-sanitize

rehype plugin to sanitize HTML


Version published
Weekly downloads
284K
increased by5.99%
Maintainers
2
Weekly downloads
 
Created

What is rehype-sanitize?

The rehype-sanitize package is a plugin for the rehype ecosystem that allows you to sanitize HTML. It is used to clean up and secure HTML content by removing potentially harmful elements and attributes, making it safe to use in web applications.

What are rehype-sanitize's main functionalities?

Basic Sanitization

This feature allows you to sanitize basic HTML content by removing potentially harmful elements like <script> tags. The example code demonstrates how to use rehype-sanitize to clean up an HTML string.

const rehype = require('rehype');
const rehypeSanitize = require('rehype-sanitize');

const html = '<div><script>alert("XSS")</script><p>Hello World</p></div>';

rehype()
  .use(rehypeSanitize)
  .process(html)
  .then((file) => {
    console.log(String(file));
  });

Custom Schema

This feature allows you to use a custom schema for sanitization. The example code demonstrates how to use a GitHub-flavored schema to sanitize HTML content.

const rehype = require('rehype');
const rehypeSanitize = require('rehype-sanitize');
const schema = require('hast-util-sanitize/lib/github');

const html = '<div><script>alert("XSS")</script><p>Hello World</p></div>';

rehype()
  .use(rehypeSanitize, schema)
  .process(html)
  .then((file) => {
    console.log(String(file));
  });

Customizing Allowed Elements

This feature allows you to customize the allowed elements and attributes in the HTML content. The example code demonstrates how to allow only <p>, <b>, and <i> tags and the 'className' attribute.

const rehype = require('rehype');
const rehypeSanitize = require('rehype-sanitize');

const schema = {
  tagNames: ['p', 'b', 'i'],
  attributes: {
    '*': ['className']
  }
};

const html = '<div class="container"><p class="text">Hello <b>World</b></p></div>';

rehype()
  .use(rehypeSanitize, schema)
  .process(html)
  .then((file) => {
    console.log(String(file));
  });

Other packages similar to rehype-sanitize

Keywords

FAQs

Package last updated on 22 Aug 2020

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc