From be527813c08c35f2558a70ac09b06edbe777c6ca Mon Sep 17 00:00:00 2001 From: abhro <5664668+abhro@users.noreply.github.com> Date: Fri, 2 Jan 2026 22:23:44 -0500 Subject: [PATCH] Indent content to unify ordered list in Markdown --- docs/src/gettingstarted.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/src/gettingstarted.md b/docs/src/gettingstarted.md index 22c0cf3..5258a64 100644 --- a/docs/src/gettingstarted.md +++ b/docs/src/gettingstarted.md @@ -47,20 +47,20 @@ If you want to use a different Julia executable command for the LanguageServer r 1. From the File Explorer toolbar, click the **New File** button on the `Hello` folder: -![Julia VS Code Extension](assets/hello-1.png) + ![Julia VS Code Extension](assets/hello-1.png) 2. Name the file `hello.jl`, and it automatically opens in the editor. -![Julia VS Code Extension](assets/hello-2.png) + ![Julia VS Code Extension](assets/hello-2.png) -The .jl file extension indicates to VS Code that you interpret this file as a Julia program, therefore it evaluates the contents with the Julia extension and the selected interpreter. + The .jl file extension indicates to VS Code that you interpret this file as a Julia program, therefore it evaluates the contents with the Julia extension and the selected interpreter. 3. Enter the following source code in hello.jl: -```julia -msg = "Hello World" -println(msg) -``` + ```julia + msg = "Hello World" + println(msg) + ``` ## Running Hello World program