Improve highlighting of code samples

John Gardner
2021-12-22 19:35:09 +11:00
parent f19aa1e319
commit 96b8aa3c61

@@ -5,9 +5,9 @@
```sh ```sh
for f in *.png for f in *.png
do do
cat << EOF cat << HTML
<img src="$f" /><br/> <img src="$f" /><br/>
EOF HTML
done > index.html done > index.html
``` ```
@@ -16,11 +16,12 @@ done > index.html
```sh ```sh
for f in *.png for f in *.png
do do
cat << EOF cat << HTML
<img src="$f" /><br/> <img src="$f" /><br/>
EOF HTML
done > index.html done > index.html
``` ```
### Rationale: ### Rationale:
The here document delimiter will not be recognized if it is indented. The here document delimiter will not be recognized if it is indented.