docs(details): change details shortcode calls to angle brackets (#855)

Co-authored-by: Xin <5097752+imfing@users.noreply.github.com>
This commit is contained in:
Bubbler
2025-10-13 07:07:24 +09:00
committed by GitHub
parent b7f4bffce6
commit bfeae19076
4 changed files with 32 additions and 32 deletions

View File

@@ -8,36 +8,36 @@ title: جزئیات
## مثال
{{% details title="جزئیات" %}}
{{< details title="جزئیات" >}}
این محتوای جزئیات است.
مارک‌داون **پشتیبانی می‌شود**.
{{% /details %}}
{{< /details >}}
{{% details title="برای نمایش کلیک کنید" closed="true" %}}
{{< details title="برای نمایش کلیک کنید" closed="true" >}}
این به‌صورت پیش‌فرض مخفی خواهد بود.
{{% /details %}}
{{< /details >}}
## نحوه استفاده
````markdown
{{%/* details title="جزئیات" */%}}
{{</* details title="جزئیات" */>}}
این محتوای جزئیات است.
مارک‌داون **پشتیبانی می‌شود**.
{{%/* /details */%}}
{{</* /details */>}}
````
````markdown
{{%/* details title="برای نمایش کلیک کنید" closed="true" */%}}
{{</* details title="برای نمایش کلیک کنید" closed="true" */>}}
این به‌صورت پیش‌فرض مخفی خواهد بود.
{{%/* /details */%}}
{{</* /details */>}}
````

View File

@@ -8,36 +8,36 @@ title: 詳細
## 例
{{% details title="詳細" %}}
{{< details title="詳細" >}}
これは詳細のコンテンツです。
Markdown は **サポートされています**
{{% /details %}}
{{< /details >}}
{{% details title="クリックして表示" closed="true" %}}
{{< details title="クリックして表示" closed="true" >}}
これはデフォルトで非表示になります。
{{% /details %}}
{{< /details >}}
## 使用方法
````markdown
{{%/* details title="詳細" */%}}
{{</* details title="詳細" */>}}
これは詳細のコンテンツです。
Markdown は **サポートされています**。
{{%/* /details */%}}
{{</* /details */>}}
````
````markdown
{{%/* details title="クリックして表示" closed="true" */%}}
{{</* details title="クリックして表示" closed="true" */>}}
これはデフォルトで非表示になります。
{{%/* /details */%}}
{{</* /details */>}}
````

View File

@@ -8,36 +8,36 @@ A built-in component to display a collapsible content.
## Example
{{% details title="Details" %}}
{{< details title="Details" >}}
This is the content of the details.
Markdown is **supported**.
{{% /details %}}
{{< /details >}}
{{% details title="Click me to reveal" closed="true" %}}
{{< details title="Click me to reveal" closed="true" >}}
This will be hidden by default.
{{% /details %}}
{{< /details >}}
## Usage
````markdown
{{%/* details title="Details" */%}}
{{</* details title="Details" */>}}
This is the content of the details.
Markdown is **supported**.
{{%/* /details */%}}
{{</* /details */>}}
````
````markdown
{{%/* details title="Click me to reveal" closed="true" */%}}
{{</* details title="Click me to reveal" closed="true" */>}}
This will be hidden by default.
{{%/* /details */%}}
{{</* /details */>}}
````

View File

@@ -8,36 +8,36 @@ title: 详情
## 示例
{{% details title="详情" %}}
{{< details title="详情" >}}
这是详情的内容。
支持 **Markdown** 格式。
{{% /details %}}
{{< /details >}}
{{% details title="点击我展开" closed="true" %}}
{{< details title="点击我展开" closed="true" >}}
默认情况下,这部分内容会被隐藏。
{{% /details %}}
{{< /details >}}
## 使用方法
````markdown
{{%/* details title="详情" */%}}
{{</* details title="详情" */>}}
这是详情的内容。
支持 **Markdown** 格式。
{{%/* /details */%}}
{{</* /details */>}}
````
````markdown
{{%/* details title="点击我展开" closed="true" */%}}
{{</* details title="点击我展开" closed="true" */>}}
默认情况下,这部分内容会被隐藏。
{{%/* /details */%}}
{{</* /details */>}}
````