Refactor move docs (#8108)

* feat: [skip] generate readme script

* docs: [skip ci] update READMEs

* docs: [skip ci] fix code block type

* chore: [skip ci] move generator script
This commit is contained in:
Sven SAULEAU
2018-06-04 16:32:39 +02:00
committed by Henry Zhu
parent b6eaaa2496
commit b445b79734
143 changed files with 1286 additions and 11238 deletions

View File

@@ -1,54 +1,19 @@
# @babel/plugin-syntax-json-strings
# @babel/plugin-proposal-json-strings
Allow parsing of the U+2028 LINE SEPARATOR and U+2029 PARAGRAPH SEPARATOR in JS strings
> Escape U+2028 LINE SEPARATOR and U+2029 PARAGRAPH SEPARATOR in JS strings
## Examples
See our website [@babel/plugin-proposal-json-strings](https://new.babeljs.io/docs/en/next/babel-plugin-proposal-json-strings.html) for more information.
**In**
## Install
```js
const ex = "beforeafter";
// ^ There's a U+2028 char between 'before' and 'after'
```
**Out**
```js
const ex = "before\u2028after";
// ^ There's a U+2028 char between 'before' and 'after'
```
## Installation
Using npm:
```sh
npm install --save-dev @babel/plugin-proposal-json-strings
npm install --save @babel/plugin-proposal-json-strings
```
## Usage
### Via `.babelrc` (Recommended)
**.babelrc**
```json
{
"plugins": ["@babel/plugin-proposal-json-strings"]
}
```
### Via CLI
or using yarn:
```sh
babel --plugins @babel/plugin-proposal-json-strings script.js
yarn add --save @babel/plugin-proposal-json-strings
```
### Via Node API
```javascript
require("@babel/core").transform("code", {
plugins: ["@babel/plugin-proposal-json-strings"]
});
```
## References
- [Proposal: Optional Catch Binding for ECMAScript](https://github.com/babel/proposals/issues/7)