Browse Source

Fix broken links in the docs (#4963)

* docs: Fix broken link of Storage

* docs: Fix broken link of Blocks

* docs: Fix broken link of Style-manager

* docs: Fix broken link of Commands

* docs: Fix broken link of Assets

---------

Co-authored-by: Artur Arseniev <artur.catch@hotmail.it>
pull/4990/head
Himansh 3 years ago
committed by GitHub
parent
commit
35517d5119
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      docs/modules/Assets.md
  2. 2
      docs/modules/Blocks.md
  3. 2
      docs/modules/Commands.md
  4. 2
      docs/modules/Storage.md
  5. 2
      docs/modules/Style-manager.md

2
docs/modules/Assets.md

@ -31,7 +31,7 @@ You can update most of them later by using `getConfig` inside of the module
const amConfig = editor.AssetManager.getConfig();
```
Check the full list of available options here: [Asset Manager Config](https://github.com/GrapesJS/grapesjs/blob/master/src/asset_manager/config/config.js)
Check the full list of available options here: [Asset Manager Config](https://github.com/GrapesJS/grapesjs/blob/master/src/asset_manager/config/config.ts)

2
docs/modules/Blocks.md

@ -33,7 +33,7 @@ const editor = grapesjs.init({
});
```
Check the full list of available options here: [Block Manager Config](https://github.com/GrapesJS/grapesjs/blob/master/src/block_manager/config/config.js)
Check the full list of available options here: [Block Manager Config](https://github.com/GrapesJS/grapesjs/blob/master/src/block_manager/config/config.ts)
## Initialization

2
docs/modules/Commands.md

@ -37,7 +37,7 @@ const editor = grapesjs.init({
});
```
For all other available options check directly the [configuration source file](https://github.com/GrapesJS/grapesjs/blob/dev/src/commands/config/config.js).
For all other available options check directly the [configuration source file](https://github.com/GrapesJS/grapesjs/blob/master/src/commands/config/config.ts).
Most commonly commands are created dynamically post-initialization, in that case, you'll need to use the [Commands API](/api/commands.html) (eg. this is what you need if you create a plugin)

2
docs/modules/Storage.md

@ -43,7 +43,7 @@ const editor = grapesjs.init({
});
```
Check the full list of available options here: [Storage Manager Config](https://github.com/GrapesJS/grapesjs/blob/master/src/storage_manager/config/config.js)
Check the full list of available options here: [Storage Manager Config](https://github.com/GrapesJS/grapesjs/blob/master/src/storage_manager/config/config.ts)

2
docs/modules/Style-manager.md

@ -32,7 +32,7 @@ const editor = grapesjs.init({
});
```
Check the full list of available options here: [Style Manager Config](https://github.com/GrapesJS/grapesjs/blob/master/src/style_manager/config/config.js)
Check the full list of available options here: [Style Manager Config](https://github.com/GrapesJS/grapesjs/blob/master/src/style_manager/config/config.ts)

Loading…
Cancel
Save