Skip to content

Commit 4560af3

Browse files
committed
Reformat Markdown files
1 parent 615f7b4 commit 4560af3

File tree

6 files changed

+9
-1
lines changed

6 files changed

+9
-1
lines changed

docs/src/buildtools/1-devenv.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ yarn workspaces focus @sourceacademy/modules-buildtools
1717
Compiling the build tools is as simple as running `yarn build`. This by default produces a minified Javascript file, which is not very conducive to debugging. If necessary
1818
you can run `yarn build --dev` instead to produce a non-minified build.
1919

20-
For the projects that are supposed to be bundled into a single file using `esbuild`, the package `@sourceacademy/modules-repotools` exports a function that
20+
For the projects that are supposed to be bundled into a single file using `esbuild`, the package `@sourceacademy/modules-repotools` exports a function that
2121
wraps `esbuild` and `commander` to create a easy to use compiler.
2222

2323
## Testing

docs/src/lib/lintplugin/2-rules.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -259,6 +259,7 @@ This rule accepts a configuration array with two elements:
259259

260260
✅ Examples of **correct** code using these options:
261261
If the rule was configured with `['error', '@sourceacademy/modules-lib/tabs/utils', 'tabHelper']`:
262+
262263
```tsx
263264
import { tabHelper } from '@sourceacademy/modules-lib/tabs/utils';
264265

docs/src/modules/1-getting-started/2-start.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ This may prompt you to download the version of Yarn that this repository uses.
3131
## 4. Install the root package's dependencies
3232

3333
Run the following command to ensure that dependencies like `eslint` get installed correctly:
34+
3435
```sh
3536
yarn workspaces focus @sourceacademy/modules
3637
```

docs/src/modules/2-bundle/3-editing.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ This adds the dependency to `devDependencies` instead.
4848
> ```
4949
5050
You can also add the dependency directly by modifying your `package.json`:
51+
5152
```jsonc {4}
5253
{
5354
"name": "@sourceacademy/bundle-bundle0",
@@ -56,6 +57,7 @@ You can also add the dependency directly by modifying your `package.json`:
5657
}
5758
}
5859
```
60+
5961
If you do so, remember to run your installation command (same as the one above) to update the lockfile.
6062
6163
### React Within bundles

docs/src/modules/3-tabs/3-editing.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ This adds the dependency to `devDependencies` instead.
4848
> ```
4949
5050
You can also add the dependency directly by modifying your `package.json`:
51+
5152
```jsonc {4}
5253
{
5354
"name": "@sourceacademy/bundle-bundle0",
@@ -56,6 +57,7 @@ You can also add the dependency directly by modifying your `package.json`:
5657
}
5758
}
5859
```
60+
5961
If you do so, remember to run your installation command (same as the one above) to update the lockfile.
6062
6163
## React/UI Components

docs/src/modules/4-testing/2-devserver/2-devserver.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,13 @@ need to test with the frontend instead.
99
## Running the Dev Server
1010

1111
If you used a focused install, you may have to run this command first:
12+
1213
```sh
1314
yarn workspaces focus @sourceacademy/modules-devserver
1415
```
1516

1617
Then to start the devserver, simply run the following command from the **root** of the repository:
18+
1719
```sh
1820
yarn devserver
1921
```

0 commit comments

Comments
 (0)