docs: change more template blocks to have syntax highlighting

In #8215 syntax highlighting was added to most of the blocks, but there were a couple that were still being rendered as plaintext
This commit is contained in:
Devon Rifkin 2025-04-15 12:08:11 -07:00 committed by GitHub
parent 0fe487e732
commit 637fd21230
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -12,7 +12,7 @@ A basic Go template consists of three main parts:
Here's an example of a simple chat template:
```gotmpl
```go
{{- range .Messages }}
{{ .Role }}: {{ .Content }}
{{- end }}
@ -162,6 +162,6 @@ CodeLlama [7B](https://ollama.com/library/codellama:7b-code) and [13B](https://o
Codestral [22B](https://ollama.com/library/codestral:22b) supports fill-in-middle.
```gotmpl
```go
[SUFFIX]{{ .Suffix }}[PREFIX] {{ .Prompt }}
```