Skip to content

sdobz/notebook-render

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

39 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

@nteract/notebook-render

This package provides a small React component that allows to render notebooks server-side with ReactDOMServer.renderToStaticMarkup(). Markdown is parsed with marked and maths are rendered with katex. To support rendering math with katex, you will need to include the katex.css stylesheet in your page.

Installation

$ yarn add @nteract/notebook-render
$ npm install --save @nteract/notebook-render

Usage

import NotebookRender from "@nteract/notebook-render";

export default () => {
  const reactComponent = React.createElement(
    NotebookRender,
    {
      notebook: notebook
    },
    null
  );

  const html = ReactDOMServer.renderToStaticMarkup(reactComponent);
  return html;
};

Documentation

We're working on adding more documentation for this component. Stay tuned by watching this repository!

Support

If you experience an issue while using this package or have a feature request, please file an issue on the issue board.

License

BSD-3-Clause

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 50.0%
  • TypeScript 50.0%