Skip to content

Commit 32636df

Browse files
committed
Trailing escape slash in code blocks appears broken
1 parent 8fb3ede commit 32636df

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

docs/source/index.md

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,7 @@ And we'll invest time in making sure these are easily obtainable (`brew`, `winge
4343
For now you can run the tool locally through `docker run`
4444

4545
```bash
46-
docker run -v "./.git:/app/.git" -v "./docs:/app/docs" -v "./.artifacts:/app/.artifacts" \
47-
ghcr.io/elastic/docs-builder:edge
46+
docker run -v "./.git:/app/.git" -v "./docs:/app/docs" -v "./.artifacts:/app/.artifacts" ghcr.io/elastic/docs-builder:edge
4847
```
4948

5049
This ensures `.git`/`docs` and `.artifacts` (the default output directory) are mounted.
@@ -54,17 +53,15 @@ Only the changed files on subsequent runs will be compiled unless you pass `--fo
5453
to force a new compilation.
5554

5655
```bash
57-
docker run -v "./.git:/app/.git" -v "./docs:/app/docs" -v "./.artifacts:/app/.artifacts" \
58-
ghcr.io/elastic/docs-builder:edge --force
56+
docker run -v "./.git:/app/.git" -v "./docs:/app/docs" -v "./.artifacts:/app/.artifacts" ghcr.io/elastic/docs-builder:edge --force
5957
```
6058

6159
#### Live mode
6260

6361
Through the `serve` command you can continuously and partially compile your documentation.
6462

6563
```bash
66-
docker run -v "./.git:/app/.git" -v "./docs:/app/docs" -v "./.artifacts:/app/.artifacts" \
67-
--expose 8080 ghcr.io/elastic/docs-builder:edge serve
64+
docker run -v "./.git:/app/.git" -v "./docs:/app/docs" -v "./.artifacts:/app/.artifacts" --expose 8080 ghcr.io/elastic/docs-builder:edge serve
6865
```
6966

7067
Each page is compiled on demand as you browse http://localhost:8080 and is never cached so changes to files and

0 commit comments

Comments
 (0)