Merge pull request #31 from dym-sh/master

fix missing commas
This commit is contained in:
Paweł Romanowski 2023-03-21 10:22:13 +01:00 committed by GitHub
commit 8f549fea12
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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;")
```