mirror of
https://github.com/dillonzq/LoveIt.git
synced 2024-11-15 11:33:20 +01:00
66 lines
1.3 KiB
Markdown
66 lines
1.3 KiB
Markdown
|
---
|
||
|
weight: 9
|
||
|
title: "Theme Documentation - bilibili Shortcode"
|
||
|
date: 2020-03-03T11:29:41+08:00
|
||
|
lastmod: 2020-03-03T12:29:41+08:00
|
||
|
draft: false
|
||
|
author: "Dillon"
|
||
|
authorLink: "https://dillonzq.com"
|
||
|
description: "The bilibili shortcode embeds a responsive video player for bilibili videos."
|
||
|
images: ["featured-image.jpg"]
|
||
|
resources:
|
||
|
- name: "featured-image"
|
||
|
src: "featured-image.jpg"
|
||
|
|
||
|
tags: ["shortcodes"]
|
||
|
categories: ["documentation"]
|
||
|
|
||
|
hiddenFromHomePage: true
|
||
|
|
||
|
toc:
|
||
|
enable: false
|
||
|
---
|
||
|
|
||
|
{{< version 0.2.0 changed >}}
|
||
|
|
||
|
The `bilibili` shortcode embeds a responsive video player for bilibili videos.
|
||
|
|
||
|
<!--more-->
|
||
|
|
||
|
When the video only has one part, only the BV `id` of the video is required, e.g.:
|
||
|
|
||
|
```code
|
||
|
https://www.bilibili.com/video/BV1Sx411T7QQ
|
||
|
```
|
||
|
|
||
|
Example `bilibili` input:
|
||
|
|
||
|
```markdown
|
||
|
{{</* bilibili BV1Sx411T7QQ */>}}
|
||
|
Or
|
||
|
{{</* bilibili id=BV1Sx411T7QQ */>}}
|
||
|
```
|
||
|
|
||
|
The rendered output looks like this:
|
||
|
|
||
|
{{< bilibili id=BV1Sx411T7QQ >}}
|
||
|
|
||
|
When the video has multiple parts, in addition to the BV `id` of the video,
|
||
|
`p` is also required, whose default value is `1`, e.g.:
|
||
|
|
||
|
```code
|
||
|
https://www.bilibili.com/video/BV1TJ411C7An?p=3
|
||
|
```
|
||
|
|
||
|
Example `bilibili` input with `p`:
|
||
|
|
||
|
```markdown
|
||
|
{{</* bilibili BV1TJ411C7An 3 */>}}
|
||
|
Or
|
||
|
{{</* bilibili id=BV1TJ411C7An p=3 */>}}
|
||
|
```
|
||
|
|
||
|
The rendered output looks like this:
|
||
|
|
||
|
{{< bilibili id=BV1TJ411C7An p=3 >}}
|