From 0ccba3890c7591065963456c3cdd99f049fadee0 Mon Sep 17 00:00:00 2001 From: abhro <5664668+abhro@users.noreply.github.com> Date: Sat, 30 Nov 2024 10:09:40 -0500 Subject: [PATCH] Fix nested markdown list Indent of nested list didn't match start of content (i.e., the part after `2. ...`) so the list was fragmented --- docs/src/getting_started.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/src/getting_started.md b/docs/src/getting_started.md index 2426ad5..9ab23d2 100644 --- a/docs/src/getting_started.md +++ b/docs/src/getting_started.md @@ -27,13 +27,13 @@ Here are the tweaks to add: 2. Within the `MarkdownVitepress` configuration of your `make.jl` file, pass the following two key word arguments and their values: - i. `md_output_path = "."` + i. `md_output_path = "."` - ii. `build_vitepress = false` + ii. `build_vitepress = false` 3. Within the `makedocs` command within your `make.jl` file, pass the following key word argument: - i. `clean = false` + i. `clean = false` Then, to preview changes live, open two separate Julia instances both within the `docs` folder and activate the `docs` environment in both sessions. Within one session run `using LiveServer; servedocs(foldername="/path/to/your/docs/folder")` (this could be something like `servedocs(foldername="docs/")` or `servedocs(foldername=pwd())`).