Browse Source

Fix whitespaces in plugin structure snippet.

Maciej Gołaszewski 6 years ago
parent
commit
b38d5e0281
1 changed files with 9 additions and 9 deletions
  1. 9 9
      docs/framework/guides/tutorials/implementing-an-inline-widget.md

+ 9 - 9
docs/framework/guides/tutorials/implementing-an-inline-widget.md

@@ -152,20 +152,20 @@ The project will have a structure as below:
 ```
 ├── app.js
 ├── dist
-│   ├── bundle.js
-│   └── bundle.js.map
+│   ├── bundle.js
+│   └── bundle.js.map
 ├── index.html
 ├── node_modules
 ├── package.json
 ├── placeholder
-│   ├── placeholder.js
-│   ├── placeholdercommand.js
-│   ├── placeholderediting.js
-│   ├── placeholderui.js
-│   └── theme
-│       └── placeholder.css
+│   ├── placeholder.js
+│   ├── placeholdercommand.js
+│   ├── placeholderediting.js
+│   ├── placeholderui.js
+│   └── theme
+│       └── placeholder.css
-│   ... the rest of plugin files go here as well
+│   ... the rest of plugin files go here as well
 └── webpack.config.js
 ```