[fix] Docs rendering issue with rendering on electronjs quick-start (#32293)

there is a issue with rendering on the bottom of page https://www.electronjs.org/docs/v14-x-y/tutorial/quick-start
which looks like this
![](https://dl3.pushbulletusercontent.com/MXsLhjaoKRj1bhu4R73E3WLiuKCBMkgh/image.png)

all id did is remove the spacing and it should fix the issue. sometimes having spaces before a "```" will cause issues

hope this helps!
This commit is contained in:
Oran C 2022-01-03 12:18:02 -07:00 committed by GitHub
parent 727453ef04
commit 195d2b5b3e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -463,46 +463,46 @@ The fastest way to distribute your newly created app is using
1. Add Electron Forge as a development dependency of your app, and use its `import` command to set up 1. Add Electron Forge as a development dependency of your app, and use its `import` command to set up
Forge's scaffolding: Forge's scaffolding:
```sh npm2yarn ```sh npm2yarn
npm install --save-dev @electron-forge/cli npm install --save-dev @electron-forge/cli
npx electron-forge import npx electron-forge import
✔ Checking your system ✔ Checking your system
✔ Initializing Git Repository ✔ Initializing Git Repository
✔ Writing modified package.json file ✔ Writing modified package.json file
✔ Installing dependencies ✔ Installing dependencies
✔ Writing modified package.json file ✔ Writing modified package.json file
✔ Fixing .gitignore ✔ Fixing .gitignore
We have ATTEMPTED to convert your app to be in a format that electron-forge understands. We have ATTEMPTED to convert your app to be in a format that electron-forge understands.
Thanks for using "electron-forge"!!! Thanks for using "electron-forge"!!!
``` ```
1. Create a distributable using Forge's `make` command: 1. Create a distributable using Forge's `make` command:
```sh npm2yarn ```sh npm2yarn
npm run make npm run make
> my-electron-app@1.0.0 make /my-electron-app > my-electron-app@1.0.0 make /my-electron-app
> electron-forge make > electron-forge make
✔ Checking your system ✔ Checking your system
✔ Resolving Forge Config ✔ Resolving Forge Config
We need to package your application before we can make it We need to package your application before we can make it
✔ Preparing to Package Application for arch: x64 ✔ Preparing to Package Application for arch: x64
✔ Preparing native dependencies ✔ Preparing native dependencies
✔ Packaging Application ✔ Packaging Application
Making for the following targets: zip Making for the following targets: zip
✔ Making for target: zip - On platform: darwin - For arch: x64 ✔ Making for target: zip - On platform: darwin - For arch: x64
``` ```
Electron Forge creates the `out` folder where your package will be located: Electron Forge creates the `out` folder where your package will be located:
```plain ```plain
// Example for macOS // Example for macOS
out/ out/
├── out/make/zip/darwin/x64/my-electron-app-darwin-x64-1.0.0.zip ├── out/make/zip/darwin/x64/my-electron-app-darwin-x64-1.0.0.zip
├── ... ├── ...
└── out/my-electron-app-darwin-x64/my-electron-app.app/Contents/MacOS/my-electron-app └── out/my-electron-app-darwin-x64/my-electron-app.app/Contents/MacOS/my-electron-app
``` ```