Skip to content

Commit ca5e959

Browse files
committed
Replace HTML entities with actual characters so they render correctly
in the documentation
1 parent 6bc2155 commit ca5e959

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

docs/features/shell-integration.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -426,7 +426,7 @@ This setup works reliably on Windows systems using Cygwin, Fish, and the Starshi
426426

427427
**Issue**: Commands that span multiple lines can confuse Roo and may show output from previous commands mixed in with current output.
428428

429-
**Workaround**: Instead of multi-line commands, use command chaining with `&&` to keep everything on one line (e.g., `echo a && echo b` instead of typing each command on a separate line).
429+
**Workaround**: Instead of multi-line commands, use command chaining with `&&` to keep everything on one line (e.g., `echo a && echo b` instead of typing each command on a separate line).
430430

431431
#### PowerShell-Specific Issues
432432

docs/providers/ollama.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -135,20 +135,20 @@ If no model instance is running, Ollama spins one up on demand. During that cold
135135
**Fixes**
136136
1. **Preload the model**
137137
```bash
138-
ollama run <model-name>
138+
ollama run <model-name>
139139
```
140140
Keep it running, then issue the request from Roo.
141141
142142
2. **Pin the context window (`num_ctx`)**
143143
- Option A — interactive session, then save:
144144
```bash
145-
# inside `ollama run &lt;base-model&gt;`
145+
# inside `ollama run <base-model>`
146146
/set parameter num_ctx 32768
147-
/save &lt;your_model_name&gt;
147+
/save <your_model_name>
148148
```
149149
- Option B — Modelfile (recommended for reproducibility):
150150
```dockerfile
151-
FROM &lt;base-model&gt;
151+
FROM <base-model>
152152
PARAMETER num_ctx 32768
153153
# Adjust based on your available memory:
154154
# 16384 for ~8GB VRAM
@@ -157,7 +157,7 @@ If no model instance is running, Ollama spins one up on demand. During that cold
157157
```
158158
Then create the model:
159159
```bash
160-
ollama create &lt;your_model_name&gt; -f Modelfile
160+
ollama create <your_model_name> -f Modelfile
161161
```
162162
163163
3. **Ensure the model's context window is pinned**
@@ -169,7 +169,7 @@ If no model instance is running, Ollama spins one up on demand. During that cold
169169
5. **Restart after an OOM**
170170
```bash
171171
ollama ps
172-
ollama stop &lt;model-name&gt;
172+
ollama stop <model-name>
173173
```
174174
175175
**Quick checklist**

0 commit comments

Comments
 (0)