mirror of https://github.com/onweru/compose.git

Ray
11.12.2023 29764d3cdc54e0f25f2c2f377f72eeebf1535dab
exampleSite/content/docs/compose/shortcodes.md
@@ -70,18 +70,21 @@
#### Lite YouTube
The `liteyoutube` shortcode supports two parameters:
The `liteyoutube` shortcode supports three parameters:
- videoid: the `videoid` parameter **is required**. However, you don't have to use it by name--you can just put in a YouTube video ID.
- params: the `params` parameter is **not** required. If you decide to use it, you must also use the `videoid` parameter.
| PARAMETER | PURPOSE | OPTIONAL |
| :--- | :--- | :--- |
| videoid | YouTube video identifier | no |
| params | YouTube parameters | yes |
| img | Background image from static/images | yes |
##### Without `videoid`
##### With only `videoid`
```markdown
{{</* liteyoutube "MmG2ah5Df4g" */>}}
{{</* liteyoutube videoid="MmG2ah5Df4g" */>}}
```
{{< liteyoutube "MmG2ah5Df4g" >}}
{{< liteyoutube videoid="MmG2ah5Df4g" >}}
##### With `videoid` and `params`
@@ -93,6 +96,15 @@
{{< liteyoutube videoid="MmG2ah5Df4g" params="controls=0&start=10&end=30&modestbranding=2&rel=0&enablejsapi=1" >}}
##### With All Three Parameters
```markdown
{{</* liteyoutube videoid="MmG2ah5Df4g" img="painting.jpg" params="controls=0&start=10&end=30&modestbranding=2&rel=0&enablejsapi=1" */>}}
```
{{< liteyoutube videoid="MmG2ah5Df4g" img="painting.jpg" params="controls=0&start=10&end=30&modestbranding=2&rel=0&enablejsapi=1" >}}
{{< tip >}}
You can browse the full list of YouTube parameters [here](https://developers.google.com/youtube/player_parameters#Parameters)
{{< /tip >}}