0.1.8 • Published 2 years ago

calliope-blockworld v0.1.8

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

Calliope Blockworld Plugin

Calliope Mermaid Diagram Plugin

This plugin is for Calliope and is designed to provide functionality for mermaid diagrams inside of pages and posts.

Installation

The plugin can be installed from NPM via:

    npm install calliope-blockworld

Usage

Inside of your _calliope/app/config/plugins/index.jsx file, add the following:

    // Import the module at the top
    import BlockWorld from "calliope-blockworld";
    // and then further down inside of the switch statement add the following
    // ...
    case "blockworld":
      console.log(BlockWorld);
      let { networkString } = props.attributes;
      if (networkString) {
        return <BlockWorld networkString={networkString} />;
      } else {
        return <></>;
      }
    // ...
0.1.8

2 years ago

0.1.7

2 years ago

0.1.6

2 years ago

0.1.5

2 years ago

0.1.4

2 years ago

0.1.3

2 years ago

0.1.2

2 years ago

0.1.1

2 years ago

0.1.0

2 years ago