kubernetes-handbook/gitbook-plugin-prism-themes/demo
Jimmy Song 1a5e3f08c0
update plugin
2022-02-22 15:54:51 +08:00
..
README.md update plugin 2022-02-22 15:54:51 +08:00
SUMMARY.md update plugin 2022-02-22 15:54:51 +08:00
book.json update plugin 2022-02-22 15:54:51 +08:00

README.md

Introduction

This is a demo book.

build

gitbook install
gitbook serve

# view http://localhost:4000

demo

demo 1: typescript

class Polygon {
  constructor(height, width) {
    this.height = height;
    this.width = width;
  }
  get area() {
    return this.height * this.width;
  }
}

demo 2: javascript

function foo(bar) {
    var a = 42,
        b = "Prism";
    return a + bar(b);
}