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

react-easy-md

v1.1.1-0

Published

React marked-markdown improved without null title and with shortcuts for links.

Downloads

5

Readme

npm version npm

React Easy Markdown(react-easy-md)

Write Markdown with React easily with some JavaScript modules for it.


react-easy-md-example

This is forked version of react-marked-markdown. But the differences are

  1. It solved the problem of showing null title.
  2. set prop is included for MarkdownPreview to help you write shortcuts for <a> inside markdown.
  3. The modules used here became functional components.
  4. LiveMarkdownEditor is removed from the package to reduce package size(Refer to examples from Markdown Editor Page at Steadylearner instead.)
  5. API such as copy(ToClipBoard), html, makrdown, readLocalFileWithHow and saveTextFromWeb to help you handle .md file.

The original Github repository is archived so this package was made to share the code from the former repository with some improvements.

Steadylearner uses markdown intensively and it may have more features later.

To explain more about 1., You can define title for links with the syntax below

[Website](https://www.steadylearner.com/ "Website")

But having default value solves the problem of showing null title when users forget to define it or when third party data doesn't send it.

Install

  1. Type $npm install --save react-easy-md or $yarn add react-easy-md in your CLI

  2. Then,import component(s) you want

import {
  MarkdownInput,
  MarkdownPreview,
  //
  html,
  markdown,
  copy,
  readLocalFileWithHow,
  saveTextFromWeb,
  //
  substitute,
  // reverseSet,
  // unsubstitute,
} from 'react-easy-md';

Version Specific

  1. Main image for react-easy-md and it will be the last main update for it.
  2. set will be used for shortcuts(You may use substitute to use entire paths when you save file.)
  3. Test and examples are updated.
  4. It will be the last main update for this package.

Demo

  1. Live Editor at Steadylearner or CRA Version

  2. Steadylearner Blog Posts

react-easy-md-example

react-easy-md-example

Example

// index.js
import React from "react";
import ReactDOM from "react-dom";
import { MarkdownPreview, copy, } from "react-easy-md";

const example = "## React Easy Markdown"

const set = [
  ["s-", "https://www.steadylearner.com"],
  ["l-", "https://www.linkedin.com/in"],
  ["y-", "https://www.youtube.com/channel/"],
  ["t-", "https://twitter.com/"],
  ["g-", "https://www.github.com"],
];

function App() {
  return (
    <section className="App">
      <MarkdownPreview
        value={markdown(html(example))}
        markedOptions={{
          langPrefix: "hljs ", // 1.
          sanitize: false, // // 2.
          breaks: true, // 3.
        }}
        set={set} // 4.
      />
      <button onClick={() => copy(example)} >Copy</button>
    </section>
  );
}

const rootElement = document.getElementById("root");
ReactDOM.render(<App />, rootElement);

You can Refer to www.steadylearner.com/markdown page for live example.

The important points here are

  1. hljs prefix to style code blocks.

  2. false to allow html

  3. You can use [enter] instead of \n

  4. You can define shortcut for links with set prop

For code syntax highlight process in 1., you may read How to enable code syntax highlight in React App.

Then, Include link below in your index.html.

<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.13.1/styles/foundation.min.css" />

Main API

  1. Main API is MarkdownPreview and set is used to define shortcuts for links.
  2. You can refer to documentations from react-marked-markdown and marked first.

set

Define set of shortcuts and links for your .md files.

const set={[
  ["s-", "https://www.steadlyearner.com"],
  ["l-", "https://www.linkedin.com/in"],
  ["y-", "https://www.youtube.com/channel/"],
  ["t-", "https://twitter.com/"],
  ["g-", "https://www.github.com"]
]}

Then, pass it to MarkdownPreview for set prop and it will convert

[Blog](s-/blog)
[LinkedIn](l-/steady-learner-3151b7164)
[YouTube](y-/UCt_jsJOe91EVjd58kHpgTfw)
[Twittter](t-/steadylearner_p)
[Github](g-/steadylearner)

equal to

[Blog](https://www.steadylearner.com/blog)
[LinkedIn](https://www.linkedin.com/in/steady-learner-3151b7164/)
[YouTube](https://www.youtube.com/channel/UCt_jsJOe91EVjd58kHpgTfw)
[Twittter](https://twitter.com/steadylearner_p)
[Github](https://github.com/steadylearner)

With set from this package, you don't have to type the entire paths anymore.

It helps you not to repeat what you know they will do. You can use it wherever you use link. For example,

[code]: s-/code "Steadylearner Code"

substitute, unsubstitue, reverseSet

You can use shortcuts you define in set and use substitute before you use .md file where don't have code to convert them.

import { substitute, unsubstitute } from "react-easy-md";

const set={[
  ["s-", "https://www.steadlyearner.com"],
  ["l-", "https://www.linkedin.com/in"],
  ["y-", "https://www.youtube.com/channel/"],
  ["t-", "https://twitter.com/"],
  ["g-", "https://www.github.com"]
]};

const short = ": s-, (s-)";
const long = ": www.steadylearner.com, (https://www.steadylearner.com)";
substitute(set)(short); // equals to long
unsubstitue(set)(long); // eqauls to short

What you need is just to wrap .md file value with substitute(set)(value).

unsubstitue is just reverse API of substitute. You can make it with substitute and reverseSet. But it is included for your convenience.

You can refer to example code to understand it better or tests for it.

They use regex so you have to use it with caution and test for your .md file before you use them.

If you want to use it for all .md files in directory, please refer to convertdir.js.

html and markdown

import { html, markdown } from "react-easy-md";

const package = "# react easy md";
const HTML = html(package); // <h1 id="react-easy-md" >react easy md</h1>
const react-easy-md = markdown(HTML) // "# react easy md"

API to read and save .md files

You can use them for .md files or other usages.

readLocalFileWithHow, saveTextFromWeb

import React, { Component } from "react";
import { readLocalFileWithHow, saveTextFromWeb } from "react-easy-md";

class ReadSave extends Component {

  constructor(props) {
    super(props);
    this.state = {
      value: "# React Easy Markdown",
    };
  }

  readLocalFile(e) {
      readLocalFileWithHow(e, (value) => this.setState({
          value,
      }));
  } // 1.

  // 2.
  render() {
    const { value } = this.state;

    return (<section>
      <span>
          <input
              className="md-file-input"
              type="file"
              id="md-file-input"
              name="md-file-input"
              accept=".md"
              onClick={(e) => this.readLocalFile(e)}
          />
          <label
            htmlFor="md-file-input"
          >
          </label>
      </span>
      <span
          onClick={() => saveTextFromWeb(value)}
      >
          <i
              className={`fas fa-file`}
          />
      </span>
    </section>);
  }
}

You can refer to examples for them.

The important parts here are

  1. e and value is mandatory for readLocalFileWithHow.(Then, You can define function for how to use it)
  2. You just need to pass data you want to save in your machine for saveTextFromWeb.

Problem with Webpack?

If you see some warnings and errors with this package while you use webpack, you may include

// Refer to webpack.config.js at
// https://github.com/steadylearner/react-easy-md/blob/master/examples/config/webpack.config.js

// Remove errors in developement
const FilterWarningsPlugin = require('webpack-filter-warnings-plugin');
// For production mode work, use it instead of uglifyjsplugin
const TerserPlugin = require('terser-webpack-plugin'); //

moudle.exports = () => {
  return({
    module: {

      rules: [
        {// to exclude source map error from third part libraires.
          test: /\.(js|jsx)$/,
          exclude: /node_modules/,
          use: ["source-map-loader"],
          enforce: "pre",
        },
      ],


      node: {
        fs: "empty",
        tls: "empty",
        net: "empty",
        child_process: "empty",
      },

      optimization: {
        minimizer: [new TerserPlugin()],
      },

      // To remove warning from 'jsdom' used inside react-easy-md
      plugins: [
        new FilterWarningsPlugin({
          exclude: /Critical dependency: the request of a dependency is an expression/,
        }),
      ],

    }
  })
}

It is mainly to remove warnigns from the package written in TypeScript.

You won't need them if you use CRA.

(This package upgraded dependencies from react-marked-markdown and one of new dependency use TypeScript and it makes dependency problems. So you have to enable it for your bundler. )

What is Next?

  1. Test
  2. Post

Read More

  1. Steadylearner Blog Posts for .md file examples
  2. React Easy Markdown Live example

Substitute shortcuts for every .md files?

Refer to convertdir.js and $node convertdir.js <withshorcut> <withoutit>.

It will substitute shorcuts and use whole link for your .md files.

Where to learn and use markdown?

  1. Start with Markdown-Tutorial
  2. Markdown CheatSheet
  3. Use mark down for Github page
  4. Learn Markdown in X Minutes
  5. Steadylearner Markdown Live Editor
  6. Markdown to html
  7. Markdown Interpreter