Skip to content

Commit 2913d2d

Browse files
committed
Fix markdown link formatting across multiple files
1 parent 1eb4ed9 commit 2913d2d

6 files changed

Lines changed: 7 additions & 13 deletions

File tree

content/learning-paths/embedded-and-microcontrollers/llama-python-cpu/llama-python-chatbot.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,7 @@ You use [llama.cpp](https://github.com/ggerganov/llama.cpp), an open source C/C+
2626

2727
Memory size is an important factor to consider when selecting an LLM because many LLMs have memory requirements that are too large for edge devices, such as the Raspberry Pi 5. An idea of the required memory size can be obtained by looking at the number of parameters of the model. A higher number of parameters means more memory used.
2828

29-
You can also use the [Memory Model Calculator](https://huggingface.co/docs/accelerate/main/en/usage_guides/model_size_estimator
30-
) from Hugging Face to estimate memory size.
29+
You can also use the [Memory Model Calculator](https://huggingface.co/docs/accelerate/main/en/usage_guides/model_size_estimator) from Hugging Face to estimate memory size.
3130

3231
Copy the string below:
3332

content/learning-paths/servers-and-cloud-computing/copilot-extension/2-vector.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ cd python-rag-extension/vectorstore
7474

7575
2. It is recommended that you use a virtual environment to manage dependencies.
7676

77-
Ensure you have `conda` set up in your development environment. If you need guidance, follow the [Installation Guide](https://docs.anaconda.com/miniconda/install/.
77+
Ensure you have `conda` set up in your development environment. If you need guidance, follow the [Installation Guide](https://docs.anaconda.com/miniconda/install/).
7878

7979
3. To create a new conda environment, use the following command:
8080

content/learning-paths/servers-and-cloud-computing/csp/aws.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,7 @@ For advanced settings, it is recommended that you search `security groups` and c
9494

9595
When all options are set, click `Launch instance` to get started.
9696

97-
![alt-text #center](https://user-images.githubusercontent.com/97123064/243456243-06c6f57d-457a-4b92-9705-8d6abf1870bf.png
98-
"Launch the instance")
97+
![alt-text #center](https://user-images.githubusercontent.com/97123064/243456243-06c6f57d-457a-4b92-9705-8d6abf1870bf.png "Launch the instance")
9998

10099
Your compute instance will be created and be available after initialization. Click the `Instance ID` to observe the `Instance state` and other details about your instance.
101100

content/learning-paths/servers-and-cloud-computing/exploiting-stack-buffer-overflow-aarch64/buffer-overflow.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -194,8 +194,7 @@ What have the 3 instructions in the prologue done?
194194
Draw the frame layout of function `f` at this point, including where the stack
195195
pointer and the frame pointer point to.
196196

197-
The answer to this exercise can be found in the [Answers section]({{< relref
198-
"exercise-answers#answer-to-exercise-3" >}}).
197+
The answer to this exercise can be found in the [Answers section]({{< relref "exercise-answers#answer-to-exercise-3" >}}).
199198

200199
{{% /notice %}}
201200

content/learning-paths/servers-and-cloud-computing/exploiting-stack-buffer-overflow-aarch64/frame-layout.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,7 @@ From the offset `[sp, #8]` and `[sp, #12]` you can compute the frame layout.
6969
Draw the frame layout of function `f`: How are `buffer1` and `buffer2` laid out
7070
in the 16 bytes that are reserved?
7171

72-
The answer to this exercise can be found in the [Answers section]({{< relref
73-
"exercise-answers#answer-to-exercise-1" >}}).
72+
The answer to this exercise can be found in the [Answers section]({{< relref "exercise-answers#answer-to-exercise-1" >}}).
7473

7574
{{% /notice %}}
7675

@@ -133,7 +132,6 @@ Draw the frame layout of function `main`.
133132
* Where do the frame pointer (`x29`) and stack pointer (`sp`) point to just
134133
before the call to function `f`, which is done by instruction `bl f`?
135134

136-
The answer to this exercise can be found in the [Answers section]({{< relref
137-
"exercise-answers#answer-to-exercise-2" >}}).
135+
The answer to this exercise can be found in the [Answers section]({{< relref "exercise-answers#answer-to-exercise-2" >}}).
138136

139137
{{% /notice %}}

content/learning-paths/servers-and-cloud-computing/exploiting-stack-buffer-overflow-aarch64/redirect-control-flow-1.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -177,8 +177,7 @@ You saw previously that the return address will be overwritten with bytes 16 til
177177
Create a string that results in overwriting the return address in function `f`
178178
with the value `0x0000aaaaaaaa0820`.
179179

180-
The answer to this exercise can be found in the [Answers section]({{< relref
181-
"exercise-answers#answer-to-exercise-4" >}}).
180+
The answer to this exercise can be found in the [Answers section]({{< relref "exercise-answers#answer-to-exercise-4" >}}).
182181

183182
{{% /notice %}}
184183

0 commit comments

Comments
 (0)