GitXplorerGitXplorer
b

nb-mermaid

public
36 stars
19 forks
7 issues

Commits

List of commits on branch master.
Unverified
103502e6a1a50bd1895a5300abd02a87ed2867db

Merge pull request #1 from ianabc/npm_version_bumps

bbollwyvl committed 9 years ago
Unverified
21472fae820e9771bbcc8c730a6ec13788e51c0d

reminder to pull in node modules

iianabc committed 9 years ago
Unverified
a2c9168d8cb661a1c5517f9f3432ba7f4d9c21a7

Bumping some of the npm module versions and mermaid version

iianabc committed 9 years ago
Unverified
5052a17e2a6da14284e81dd4fec2d75de0faa869

preparing release

bbollwyvl committed 9 years ago
Unverified
f576b0387f6ba2667c37d5e49d79667ea3d3c590

updating site

bbollwyvl committed 9 years ago
Unverified
f5e3f3b54addb5566142c874f933417b1e22b13f

embeddable?

bbollwyvl committed 9 years ago

README

The README file for this repository.

Make mermaid diagrams in your Jupyter Notebook Markdown

install (easy)

pip install nb-mermaid

In the notebook...

%reload_ext mermaid

install (less easy)

git clone -b gh-pages https://github.com/bollwyvl/nb-mermaid.git \
    ~/.ipython/nbextensions/nb-mermaid

activate

In the notebook...

%%javascript
import notebook
notebook.nbextensions.check_nbextension('nb-mermaid',user=True)
require(['base/js/utils'],
function(utils) {
        utils.load_extensions('nb-mermaid/nb-mermaid');
});

roadmap

  • nbviewer support (bookmarklet works now!)
  • live editing (a la the mermaid editor)
  • pan/zoom
  • search

Build assets

Grab the Mermaid library

bower install

Run coffee and less to generate the

npm install
npm run build