From 26105034da4fcce7ac883c899d781f016559310d Mon Sep 17 00:00:00 2001 From: ruki Date: Thu, 8 Nov 2018 00:38:48 +0800 Subject: switch to vuepress --- node_modules/@babel/highlight/README.md | 41 +++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 node_modules/@babel/highlight/README.md (limited to 'node_modules/@babel/highlight/README.md') diff --git a/node_modules/@babel/highlight/README.md b/node_modules/@babel/highlight/README.md new file mode 100644 index 00000000..36143844 --- /dev/null +++ b/node_modules/@babel/highlight/README.md @@ -0,0 +1,41 @@ +# @babel/highlight + +> Syntax highlight JavaScript strings for output in terminals. + +## Install + +```sh +npm install --save @babel/highlight +``` + +## Usage + +```js +import highlight from "@babel/highlight"; + +const code = `class Foo { + constructor() +}`; + +const result = highlight(code); + +console.log(result); +``` + +```js +class Foo { + constructor() +} +``` + +By default, `highlight` will not highlight your code if your terminal does not support color. To force colors, pass `{ forceColor: true }` as the second argument to `highlight`. + +```js +import highlight from "@babel/highlight"; + +const code = `class Foo { + constructor() +}`; + +const result = highlight(code, { forceColor: true }); +``` -- cgit v1.2.3