fix missing commas

This commit is contained in:
Dym Sohin 2023-03-21 06:10:05 +01:00
parent 0ec1aed81a
commit 79cc6e82f9
2 changed files with 3 additions and 3 deletions

View file

@ -126,7 +126,7 @@ Example:
```
{{ figure(src="http://rustacean.net/assets/rustacean-flat-gesture.png",
style="width: 25%;",
position="right"
position="right",
caption_position="left",
caption="Ferris, the (unofficial) Rust mascot",
caption_style="font-weight: bold; font-style: italic;") }}

View file

@ -75,9 +75,9 @@ The second part follows here.
```
figure(src="http://rustacean.net/assets/rustacean-flat-gesture.png",
style="width: 25%;",
position="center"
position="center",
caption_position="left",
caption="Ferris, the (unofficial) Rust mascot"
caption="Ferris, the (unofficial) Rust mascot",
caption_style="font-weight: bold; font-style: italic;")
```