npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@arubiku/react-markdown

v1.5.6

Published

React component to use markdown with code blocks syntax highlighting , admonitions, math blocks and more

Downloads

2,609

Readme

@arubiku/react-markdown

@arubiku/react-markdown is a React package that allows you to render Markdown content easily and efficiently, with support for code highlighting and customizable themes.

Example

Image

Live demo

Installation

To install the package, run the following command in your terminal:

npm install @arubiku/react-markdown
# or
yarn add @arubiku/react-markdown

Usage

To use the package in your application, you must first import the HighlighterProvider and the SimpleMarkdown component into your file:

import React from 'react';
import { HighlighterProvider, SimpleMarkdown } from '@arubiku/react-markdown';

const App = () => {
    const markdownContent = `
# Hello, World!
This is an example of **Markdown** in our component.
## Example Code
Here is a block of code in JavaScript:
\`\`\`javascript
const hello = 'Hello, World!';
console.log(hello);
\`\`\`

> [!NOTE]
> This is a note.

$f(x) = 2x^2 + frac{3}{4}x + sqrt{x+1} + ∫_<0>^<1> x^2 dx + sum[i=1]^[n]{i^2} + lim<x->0> frac{sin(x)}{x}
`;
    return (
        <HighlighterProvider>
            <SimpleMarkdown content={markdownContent} />
        </HighlighterProvider>
    );
};

export default App;

Props of the SimpleMarkdown Component

The SimpleMarkdown component accepts the following properties:

| Property | Type | Description | |--------------------|----------|---------------------------------------------------------------------------------| | content | string | The content in Markdown format that you want to render. | | className | string | Additional CSS classes for the container. The default is dark:prose-invert. | | paragraphClass | string | CSS classes for paragraphs. Default is my-2. | | imageHeight | number | Height of images in pixels. Default is 400. | | theme | string | Code highlighting theme. Default is light. | | codeBlockTheme | string | CSS classes for code blocks. Default is bg-[#fdf6e3] dark:bg-[#2d353b]. | | tableHeaderClass | string | CSS classes for table headers. Default is bg-gray-200 dark:bg-gray-700]. | | tableCellClass | string | CSS classes for table cells. Default is border px-4 py-2. | | extraAlerts | AlertMarkdowns[] | Extra alerts to be added to the markdown. Default is []. |

Elements of the AlertMarkdowns Interface

| Property | Type | Description | |------------------|----------|---------------------------------------------------------------------------------| | SVG | JSX.Element | The SVG icon to be displayed. | | ID | string | The ID of the alert. | | CLASSNAME | string | The CSS class of the alert. | | TITLE | string | The title of the alert. | | COLOR | string | The color of the alert. |

[!NOTE] To use the dark theme, ensure you have dark mode enabled in Tailwind CSS.

Markdown Syntax

The package supports the following Markdown syntax:

  • Headers [#, ##, ###]
  • Bold and italic text [**bold**, italic]
  • Underline [__a__]
  • Blockquotes [>]
  • Special Block Quotes [> [!NOTE, !TIP, !IMPORTANT, !WARNING, !CAUTION]]
  • Tables
  • Images [![alt text](image-url) or <iframe>]
  • Links [text](url)
  • Code blocks [```]
  • Inline code blocks [code]
  • Math equations $ {equation} ex: $ f(x) = 2x^2 + frac{3}{4}

Things not in the list are not supported yet.

Functions

The package includes the following functions:

  • HighlighterProvider: A context provider that supplies syntax highlighting capabilities to all child components.
  • SimpleMarkdown: The main component for rendering Markdown content.

Contributions

Contributions are welcome! If you wish to contribute to this project, please follow these steps:

  1. Make a fork of the repository.
  2. Create a new branch (git checkout -b feature/new-feature).
  3. Make your changes and commit (git commit -m 'I added new functionality').
  4. Push to the branch (git push origin feature/new-feature).
  5. Open a Pull Request.

License

This project is licensed under the MIT License.