Skip to content

Commit

Permalink
react-markdown
Browse files Browse the repository at this point in the history
  • Loading branch information
Péter Nyakas committed Apr 9, 2020
1 parent dad959e commit b5e38ae
Show file tree
Hide file tree
Showing 13 changed files with 590 additions and 34 deletions.
309 changes: 309 additions & 0 deletions package-lock.json

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@
"mdbreact": "^4.25.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-markdown": "^4.3.1",
"react-markdown-github-renderers": "^1.0.3",
"react-postscribe": "^0.1.3",
"react-redux": "^7.2.0",
"react-router-dom": "^5.1.2",
Expand Down
10 changes: 6 additions & 4 deletions src/App.js
Original file line number Diff line number Diff line change
@@ -1,16 +1,18 @@
import React from "react";
import { BrowserRouter as Router, Route, Switch } from "react-router-dom";
import { Home } from "./components/Home";
import { NotFound } from "./components/NotFound";
import { Crisp } from "./components/Crisp";
import NavigationBar from "./components/NavigationBar";
import { Home } from "./home/Home";
import { NotFound } from "./navigation/NotFound";
import { Crisp } from "./crisp/Crisp";
import { Rocket } from "./rocket/Rocket";
import { NavigationBar } from "./navigation/NavigationBar";

function App() {
return (
<Router forceRefresh={true}>
<NavigationBar />
<Switch>
<Route exact path="/crisp" component={Crisp} />
<Route exact path="/rocket" component={Rocket} />
<Route exact path="/" component={Home} />
<Route component={NotFound} />
</Switch>
Expand Down
27 changes: 0 additions & 27 deletions src/components/Crisp.js

This file was deleted.

38 changes: 38 additions & 0 deletions src/crisp/Crisp.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
import React, { Component } from "react";
import ReactMarkdown from "react-markdown";
import renderers from "react-markdown-github-renderers";
import { PostScribe } from "react-postscribe";
import { MDBContainer } from "mdbreact";
import md from "./Crisp.md";

export class Crisp extends Component {
constructor(props) {
super(props);
this.state = { markdown: null };
}

componentWillMount() {
fetch(md)
.then((res) => res.text())
.then((text) => {
this.setState({ markdown: text });
});
}

render() {
return (
<div>
<PostScribe
html={`<script type="text/javascript">window.$crisp=[];window.CRISP_WEBSITE_ID="670945d4-b6dd-4da9-888c-b670986576d2";(function(){d=document;s=d.createElement("script");s.src="https://client.crisp.chat/l.js";s.async=1;d.getElementsByTagName("head")[0].appendChild(s);})();</script>`}
></PostScribe>
<MDBContainer className="text-justify my-5">
<ReactMarkdown
source={this.state.markdown}
escapeHtml={false}
renderers={renderers}
></ReactMarkdown>
</MDBContainer>
</div>
);
}
}
12 changes: 12 additions & 0 deletions src/crisp/Crisp.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Crisp.chat

Crisp Live Chat is a free and beautiful chat for your website. This is
the ultimate free Live Chat plugin for WordPress if you want to grow
your email list, generate leads, and enhance your customer relationship
within the same software. The free plugin includes live chat, Real-time
notifications, Desktop apps, Mobile apps, Availability schedule. All
these features work immediately with no developer help needed. By adding
this plugin to your WordPress site, you’ll gain access to Crisp Inbox
for Marketing, Sales, and Support teams, as well as Crisp Helpdesk, our
free online educational resources that will help you to better use Crisp
and support your customers.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ import {
MDBNavLink,
MDBNavbarToggler,
MDBCollapse,
MDBIcon
MDBIcon,
} from "mdbreact";
import "./NavigationBar.css";

export default class NavigationBar extends Component {
export class NavigationBar extends Component {
state = {
isOpen: false
isOpen: false,
};

toggleCollapse = () => {
Expand All @@ -37,6 +37,9 @@ export default class NavigationBar extends Component {
<MDBNavItem>
<MDBNavLink to="/crisp">Crisp</MDBNavLink>
</MDBNavItem>
<MDBNavItem>
<MDBNavLink to="/rocket">Rocket</MDBNavLink>
</MDBNavItem>
<MDBNavItem>
<a
href="https://github.com/nyakaspeter/SupportChat"
Expand Down
File renamed without changes.
34 changes: 34 additions & 0 deletions src/rocket/Rocket.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
import React, { Component } from "react";
import ReactMarkdown from "react-markdown";
import renderers from "react-markdown-github-renderers";
import { MDBContainer } from "mdbreact";
import md from "./Rocket.md";

export class Rocket extends Component {
constructor(props) {
super(props);
this.state = { markdown: null };
}

componentWillMount() {
fetch(md)
.then((res) => res.text())
.then((text) => {
this.setState({ markdown: text });
});
}

render() {
return (
<div>
<MDBContainer className="text-justify my-5">
<ReactMarkdown
source={this.state.markdown}
escapeHtml={false}
renderers={renderers}
></ReactMarkdown>
</MDBContainer>
</div>
);
}
}
183 changes: 183 additions & 0 deletions src/rocket/Rocket.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,183 @@
# react-markdown

Renders Markdown as pure React components.

[![npm version](https://img.shields.io/npm/v/react-markdown.svg?style=flat-square)](https://www.npmjs.com/package/react-markdown)[![Build Status](https://img.shields.io/travis/rexxars/react-markdown/master.svg?style=flat-square)](https://travis-ci.org/rexxars/react-markdown)

Demo available at https://rexxars.github.io/react-markdown/

---

react-markdown is proudly sponsored by

<a href="https://www.sanity.io/?utm_source=GitHub&utm_campaign=react-markdown" rel="nofollow" target="_blank">
<img src="https://www.sanity.io/static/images/logo_red.svg?v=2" width="300"><br />
Sanity: The Headless CMS Construction Kit
</a>

---

## Installing

```
npm install --save react-markdown
```

## Basic usage

```js
const React = require("react");
const ReactDOM = require("react-dom");
const ReactMarkdown = require("react-markdown");

const input = "# This is a header\n\nAnd this is a paragraph";

ReactDOM.render(
<ReactMarkdown source={input} />,
document.getElementById("container")
);
```

## Upgrading to 4.0

Should be straightforward. You might need to alter you code slightly if you:

- Are using `allowedTypes` (add `text` to the list)
- Rely on there being a container `<div>` without a class name around your rendered markdown
- Have implemented a custom `text` renderer

See [CHANGELOG](CHANGELOG.md) for more details.

## Notes

If you don't need to render HTML, this component does not use `dangerouslySetInnerHTML` at all -
this is a Good Thing™.

## Options

- `source` or `children` - _string_ The Markdown source to parse (**required**)
- `className` - _string_ Class name of the container element. If none is passed, a container will not be rendered.
- `escapeHtml` - _boolean_ Setting to `false` will cause HTML to be rendered (see notes below about proper HTML support). Be aware that setting this to `false` might cause security issues if the
input is user-generated. Use at your own risk. (default: `true`).
- `skipHtml` - _boolean_ Setting to `true` will skip inlined and blocks of HTML (default: `false`).
- `sourcePos` - _boolean_ Setting to `true` will add `data-sourcepos` attributes to all elements,
indicating where in the markdown source they were rendered from (default: `false`).
- `rawSourcePos` - _boolean_ Setting to `true` will pass a `sourcePosition` property to all renderers with structured source position information (default: `false`).
- `includeNodeIndex` - _boolean_ Setting to `true` will pass `index` and `parentChildCount` props to all renderers (default: `false`).
- `allowedTypes` - _array_ Defines which types of nodes should be allowed (rendered). (default: all
types).
- `disallowedTypes` - _array_ Defines which types of nodes should be disallowed (not rendered).
(default: none).
- `unwrapDisallowed` - _boolean_ Setting to `true` will try to extract/unwrap the children of
disallowed nodes. For instance, if disallowing `Strong`, the default behaviour is to simply skip
the text within the strong altogether, while the behaviour some might want is to simply have the
text returned without the strong wrapping it. (default: `false`)
- `allowNode` - _function_ Function execute if in order to determine if the node should be allowed.
Ran prior to checking `allowedTypes`/`disallowedTypes`. Returning a truthy value will allow the
node to be included. Note that if this function returns `true` and the type is not in
`allowedTypes` (or specified as a `disallowedType`), it won't be included. The function will
receive three arguments argument (`node`, `index`, `parent`), where `node` contains different
properties depending on the node type.
- `linkTarget` - _function|string_ Sets the default target attribute for links. If a function is
provided, it will be called with `url`, `text`, and `title` and should return a string
(e.g. `_blank` for a new tab). Default is `undefined` (no target attribute).
- `transformLinkUri` - _function|null_ Function that gets called for each encountered link with a
single argument - `uri`. The returned value is used in place of the original. The default link URI
transformer acts as an XSS-filter, neutralizing things like `javascript:`, `vbscript:` and `file:`
protocols. If you specify a custom function, this default filter won't be called, but you can
access it as `require('react-markdown').uriTransformer`. If you want to disable the default
transformer, pass `null` to this option.
- `transformImageUri` - _function|null_ Function that gets called for each encountered image with a
single argument - `uri`. The returned value is used in place of the original.
- `renderers` - _object_ An object where the keys represent the node type and the value is a React
component. The object is merged with the default renderers. The props passed to the component
varies based on the type of node.
- `plugins` - _array_ An array of unified/remark parser plugins. If you need to pass options to the plugin, pass an array with two elements, the first being the plugin and the second being the options - for instance: `{plugins: [[require('remark-shortcodes'), {your: 'options'}]]`. (default: `[]`) Note that [not all plugins can be used](https://github.com/rexxars/react-markdown/issues/188#issuecomment-404710893).
- `parserOptions` - _object_ An object containing options to pass to [remark-parse](https://github.com/remarkjs/remark/tree/master/packages/remark-parse).

## Parsing HTML

If you are in a trusted environment and want to parse and render HTML, you will want to use the `html-parser` plugin. For a default configuration, import `react-markdown/with-html` instead of the default:

```js
const ReactMarkdown = require('react-markdown/with-html')

const markdown = `
This block of Markdown contains <a href="https://en.wikipedia.org/wiki/HTML">HTML</a>, and will require the <code>html-parser</code> AST plugin to be loaded, in addition to setting the <code class="prop">escapeHtml</code> property to false.
`

<ReactMarkdown
source={markdown}
escapeHtml={false}
/>
```

If you want to specify options for the HTML parsing step, you can instead import the HTML parser plugin directly:

```js
const ReactMarkdown = require('react-markdown')
const htmlParser = require('react-markdown/plugins/html-parser')

// See https://github.com/aknuds1/html-to-react#with-custom-processing-instructions
// for more info on the processing instructions
const parseHtml = htmlParser({
isValidNode: node => node.type !== 'script',
processingInstructions: [/* ... */]
})

<ReactMarkdown
source={markdown}
escapeHtml={false}
astPlugins={[parseHtml]}
/>
```

## Node types

The node types available are the following, and applies to both `renderers` and
`allowedTypes`/`disallowedTypes`:

- `root` - Root container element that contains the rendered markdown
- `text` - Text rendered inside of other elements, such as paragraphs
- `break` - Hard-break (`<br>`)
- `paragraph` - Paragraph (`<p>`)
- `emphasis` - Emphasis (`<em>`)
- `strong` - Strong/bold (`<strong>`)
- `thematicBreak` - Horizontal rule / thematic break (`<hr>`)
- `blockquote` - Block quote (`<blockquote>`)
- `delete` - Deleted/strike-through (`<del>`)
- `link` - Link (`<a>`)
- `image` - Image (`<img>`)
- `linkReference` - Link (through a reference) (`<a>`)
- `imageReference` - Image (through a reference) (`<img>`)
- `table` - Table (`<table>`)
- `tableHead` - Table head (`<thead>`)
- `tableBody` - Table body (`<tbody>`)
- `tableRow` - Table row (`<tr>`)
- `tableCell` - Table cell (`<td>`/`<th>`)
- `list` - List (`<ul>`/`<ol>`)
- `listItem` - List item (`<li>`)
- `definition` - Definition (not rendered by default)
- `heading` - Heading (`<h1>`-`<h6>`)
- `inlineCode` - Inline code (`<code>`)
- `code` - Block of code (`<pre><code>`)
- `html` - HTML node (Best-effort rendering)
- `virtualHtml` - When not using the HTML parser plugin, a cheap and dirty approach to supporting simple HTML elements without a complete parser.
- `parsedHtml` - When using the HTML parser plugin, HTML parsed to a React element.

Note: Disallowing a node will also prevent the rendering of any children of that node, unless the
`unwrapDisallowed` option is set to `true`. E.g., disallowing a paragraph will not render its
children text nodes.

## Developing

```bash
git clone [email protected]:rexxars/react-markdown.git
cd react-markdown
npm install
npm test
```

## License

MIT © [Espen Hovlandsdal](https://espen.codes/)

0 comments on commit b5e38ae

Please sign in to comment.