sanket143 / nodebook

A web-based notebook environment for interactive computing with Node.js
0 stars 0 forks source link

Add and example notebook #10

Open sanket143 opened 3 years ago

sanket143 commented 3 years ago

Create a .jsnb file with the following content

{
  "pages": [
    {   
      "page_no": 0,
      "title": "First Page",
      "cells": [
        {   
          "cell_type": "markdown",
          "source": [
            "# Example Notebook"
          ]   
        },  
        {   
          "cell_type": "code",
          "source": [
             "console.log(\"Lorem ipsum dolor sit amet\");"
          ]   
        }   
      ]   
    }   
  ]
}