<div id="root"></div>
.App {
  font-family: sans-serif;
  text-align: center;
}

table,
tr,
td,
th {
  border: 1px solid #555;
}

blockquote {
  padding: 0 1em;
  color: #6a737d;
  border-left: 0.25em solid #dfe2e5;
}

.left {
  text-align: left;
}
import gfm from "https://cdn.skypack.dev/remark-gfm@1.0.0";


function App() {
  const tableStruct = `
  | heading | b  |  c |  d  |
  | - | :- | -: | :-: |
  | cell 1 | cell 2 | 3 | 4 | 
  `;

  return (
    <div className="App">
      <h3>React-Markdown - Using remark-gfm plugin</h3>

      <table style={{ width: "100%", borderCollapse: "collapse" }}>
        <thead>
          <tr>
            <th>Element</th>
            <th>Markdown Syntax</th>
            <th>Rendered by React-Markdown</th>
          </tr>
        </thead>
        <tbody>
          <tr>
            <td>Strikethrough</td>
            <td>~Strikethrough~</td>
            <td>
              <ReactMarkdown remarkPlugins={[gfm]}>
                ~Strikethrough~
              </ReactMarkdown>
            </td>
          </tr>
          <tr className={"left"}>
            <td>todo list (unchecked)</td>
            <td>* [ ] List item unchecked</td>
            <td>
              <ReactMarkdown remarkPlugins={[gfm]}>
                * [ ] List item unchecked
              </ReactMarkdown>
            </td>
          </tr>
          <tr className={"left"}>
            <td>todo list (checked)</td>
            <td>* [x] List item checked</td>
            <td>
              <ReactMarkdown remarkPlugins={[gfm]}>
                * [x] List item checked
              </ReactMarkdown>
            </td>
          </tr>
          <tr className={"left"}>
            <td>Tables</td>
            <td>
              | heading | b | c | d |<br />
              | - | :- | -: | :-: |<br />| cell 1 | cell 2 | 3 | 4 |
            </td>
            <td>
              <ReactMarkdown
                remarkPlugins={[gfm]}
                children={tableStruct}
              ></ReactMarkdown>
            </td>
          </tr>
        </tbody>
      </table>
    </div>
  );
}

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

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

  1. https://cdnjs.cloudflare.com/ajax/libs/react/17.0.2/umd/react.production.min.js
  2. https://cdnjs.cloudflare.com/ajax/libs/react-dom/17.0.2/umd/react-dom.production.min.js
  3. https://cdnjs.cloudflare.com/ajax/libs/react-markdown/4.3.1/react-markdown.js