From 9382de24c846518cd1c6c2ba5b434f7e3f57e3ce Mon Sep 17 00:00:00 2001 From: Ayush More Date: Wed, 9 Jul 2025 16:06:27 +0530 Subject: [PATCH 01/18] Add tabpane shortcode usage example to contributing guide Added an example usage of the tabpane shortcode to the Contributing Guide. This helps contributors understand how to implement tabbed content in documentation, which can be useful for organizing related information like platform-specific commands or language-based code examples. Signed-off-by: Ayush More --- content/en/contributing/contributing-to-docs.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/content/en/contributing/contributing-to-docs.md b/content/en/contributing/contributing-to-docs.md index 3b6bc9da7..7b64f3dcd 100644 --- a/content/en/contributing/contributing-to-docs.md +++ b/content/en/contributing/contributing-to-docs.md @@ -497,6 +497,20 @@ Stumptown PBR&B keytar plaid street art, forage XOXO pitchfork selvage affogato This is the final element on the page and there should be no margin below this. ``` + +### TabPane Shortcode Example +Layer5 docs support tabbed content using the `tabpane` shortcode. Here’s a basic example: +{{< tabpane >}} + {{< tab name="Example Tab 1" >}} + This is the content inside Tab 1. + {{< /tab >}} + {{< tab name="Example Tab 2" >}} + This is the content inside Tab 2. + {{< /tab >}} +{{< /tabpane >}} +Use this shortcode to display platform-specific commands, language-specific code blocks, or comparisons — all in an elegant, user-friendly tab layout. + + ### Footnotes This is a superscript number for your footnote. [^1] From e0f0c21e1d4d063f69e53e14aac7d3bdac7a33fc Mon Sep 17 00:00:00 2001 From: Ayush More Date: Fri, 11 Jul 2025 18:25:30 +0530 Subject: [PATCH 02/18] Fixes the tabpanes pr related issue Signed-off-by: Ayush More --- content/en/contributing/contributing-to-docs.md | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/content/en/contributing/contributing-to-docs.md b/content/en/contributing/contributing-to-docs.md index 7b64f3dcd..e68c54963 100644 --- a/content/en/contributing/contributing-to-docs.md +++ b/content/en/contributing/contributing-to-docs.md @@ -501,12 +501,13 @@ This is the final element on the page and there should be no margin below this. ### TabPane Shortcode Example Layer5 docs support tabbed content using the `tabpane` shortcode. Here’s a basic example: {{< tabpane >}} - {{< tab name="Example Tab 1" >}} - This is the content inside Tab 1. - {{< /tab >}} - {{< tab name="Example Tab 2" >}} - This is the content inside Tab 2. - {{< /tab >}} +{{< tab name="Example Tab 1" >}} +This is the content inside Example Tab 1. +{{< /tab >}} + +{{< tab name="Example Tab 2" >}} +This is the content inside Example Tab 2. +{{< /tab >}} {{< /tabpane >}} Use this shortcode to display platform-specific commands, language-specific code blocks, or comparisons — all in an elegant, user-friendly tab layout. From bb60a8bbb44337253cbedc465593149b50bb4d93 Mon Sep 17 00:00:00 2001 From: Ayush More Date: Fri, 11 Jul 2025 18:47:09 +0530 Subject: [PATCH 03/18] Fix the width Signed-off-by: Ayush More --- content/en/contributing/contributing-to-docs.md | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/content/en/contributing/contributing-to-docs.md b/content/en/contributing/contributing-to-docs.md index e68c54963..52f27ad4e 100644 --- a/content/en/contributing/contributing-to-docs.md +++ b/content/en/contributing/contributing-to-docs.md @@ -499,16 +499,27 @@ This is the final element on the page and there should be no margin below this. ### TabPane Shortcode Example + Layer5 docs support tabbed content using the `tabpane` shortcode. Here’s a basic example: + {{< tabpane >}} + {{< tab name="Example Tab 1" >}} -This is the content inside Example Tab 1. + +This is the content inside Example Tab 1. +You can include instructions, descriptions, or examples here. + {{< /tab >}} {{< tab name="Example Tab 2" >}} -This is the content inside Example Tab 2. + +This is the content inside Example Tab 2. +Each tab can hold different sets of content as needed. + {{< /tab >}} + {{< /tabpane >}} + Use this shortcode to display platform-specific commands, language-specific code blocks, or comparisons — all in an elegant, user-friendly tab layout. From 8ce98e20374224bffed27d4f450e800b5efcb77c Mon Sep 17 00:00:00 2001 From: Ayush More Date: Fri, 11 Jul 2025 18:51:06 +0530 Subject: [PATCH 04/18] Fiz Signed-off-by: Ayush More --- content/en/contributing/contributing-to-docs.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/content/en/contributing/contributing-to-docs.md b/content/en/contributing/contributing-to-docs.md index 52f27ad4e..d55b4bf11 100644 --- a/content/en/contributing/contributing-to-docs.md +++ b/content/en/contributing/contributing-to-docs.md @@ -506,15 +506,13 @@ Layer5 docs support tabbed content using the `tabpane` shortcode. Here’s a bas {{< tab name="Example Tab 1" >}} -This is the content inside Example Tab 1. -You can include instructions, descriptions, or examples here. +

This is the content inside Example Tab 1.

{{< /tab >}} {{< tab name="Example Tab 2" >}} -This is the content inside Example Tab 2. -Each tab can hold different sets of content as needed. +

This is the content inside Example Tab 2.

{{< /tab >}} From 8173044138e8f760c94688ce079ce0b687a5b5e1 Mon Sep 17 00:00:00 2001 From: Ayush More Date: Fri, 11 Jul 2025 18:56:02 +0530 Subject: [PATCH 05/18] Update contributing-to-docs.md Signed-off-by: Ayush More --- content/en/contributing/contributing-to-docs.md | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/content/en/contributing/contributing-to-docs.md b/content/en/contributing/contributing-to-docs.md index d55b4bf11..c4c648eb0 100644 --- a/content/en/contributing/contributing-to-docs.md +++ b/content/en/contributing/contributing-to-docs.md @@ -498,21 +498,17 @@ This is the final element on the page and there should be no margin below this. ``` -### TabPane Shortcode Example - -Layer5 docs support tabbed content using the `tabpane` shortcode. Here’s a basic example: - {{< tabpane >}} {{< tab name="Example Tab 1" >}} -

This is the content inside Example Tab 1.

+This is the content inside Example Tab 1. {{< /tab >}} {{< tab name="Example Tab 2" >}} -

This is the content inside Example Tab 2.

+This is the content inside Example Tab 2. {{< /tab >}} @@ -520,7 +516,6 @@ Layer5 docs support tabbed content using the `tabpane` shortcode. Here’s a bas Use this shortcode to display platform-specific commands, language-specific code blocks, or comparisons — all in an elegant, user-friendly tab layout. - ### Footnotes This is a superscript number for your footnote. [^1] From 2b1352ac5fb34ee7ae5a15fcfaca0836240b5c62 Mon Sep 17 00:00:00 2001 From: Ayush More Date: Fri, 11 Jul 2025 19:01:20 +0530 Subject: [PATCH 06/18] Update contributing-to-docs.md Signed-off-by: Ayush More --- content/en/contributing/contributing-to-docs.md | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/content/en/contributing/contributing-to-docs.md b/content/en/contributing/contributing-to-docs.md index c4c648eb0..342143190 100644 --- a/content/en/contributing/contributing-to-docs.md +++ b/content/en/contributing/contributing-to-docs.md @@ -497,19 +497,22 @@ Stumptown PBR&B keytar plaid street art, forage XOXO pitchfork selvage affogato This is the final element on the page and there should be no margin below this. ``` +### TabPane Shortcode Example + +Layer5 docs support tabbed content using the `tabpane` shortcode. Here’s a basic example: {{< tabpane >}} {{< tab name="Example Tab 1" >}} - +``` This is the content inside Example Tab 1. - +``` {{< /tab >}} {{< tab name="Example Tab 2" >}} - +``` This is the content inside Example Tab 2. - +``` {{< /tab >}} {{< /tabpane >}} From 6bddbbcf0003d520a0578c9be2e89e46c58b89a2 Mon Sep 17 00:00:00 2001 From: Ayush More Date: Fri, 11 Jul 2025 19:05:03 +0530 Subject: [PATCH 07/18] Width fix Signed-off-by: Ayush More --- content/en/contributing/contributing-to-docs.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/content/en/contributing/contributing-to-docs.md b/content/en/contributing/contributing-to-docs.md index 342143190..e8579bbb8 100644 --- a/content/en/contributing/contributing-to-docs.md +++ b/content/en/contributing/contributing-to-docs.md @@ -504,15 +504,15 @@ Layer5 docs support tabbed content using the `tabpane` shortcode. Here’s a bas {{< tabpane >}} {{< tab name="Example Tab 1" >}} -``` + This is the content inside Example Tab 1. -``` + {{< /tab >}} {{< tab name="Example Tab 2" >}} -``` + This is the content inside Example Tab 2. -``` + {{< /tab >}} {{< /tabpane >}} From 5a5ce99bf565062cf7cf2af91a187f530b278252 Mon Sep 17 00:00:00 2001 From: Ayush More Date: Fri, 11 Jul 2025 19:07:26 +0530 Subject: [PATCH 08/18] Update contributing-to-docs.md Signed-off-by: Ayush More --- content/en/contributing/contributing-to-docs.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/en/contributing/contributing-to-docs.md b/content/en/contributing/contributing-to-docs.md index e8579bbb8..aaa4a93cf 100644 --- a/content/en/contributing/contributing-to-docs.md +++ b/content/en/contributing/contributing-to-docs.md @@ -505,13 +505,13 @@ Layer5 docs support tabbed content using the `tabpane` shortcode. Here’s a bas {{< tab name="Example Tab 1" >}} -This is the content inside Example Tab 1. +This is the content inside Example Tab 0. {{< /tab >}} {{< tab name="Example Tab 2" >}} -This is the content inside Example Tab 2. +This is the content inside Example Tab 1. {{< /tab >}} From 60bd3289484169b01e56d944e8d697146e8716a1 Mon Sep 17 00:00:00 2001 From: Ayush More Date: Sun, 13 Jul 2025 19:05:31 +0530 Subject: [PATCH 09/18] Width fix Signed-off-by: Ayush More --- content/en/contributing/contributing-to-docs.md | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/content/en/contributing/contributing-to-docs.md b/content/en/contributing/contributing-to-docs.md index aaa4a93cf..8cb725f19 100644 --- a/content/en/contributing/contributing-to-docs.md +++ b/content/en/contributing/contributing-to-docs.md @@ -501,24 +501,21 @@ This is the final element on the page and there should be no margin below this. Layer5 docs support tabbed content using the `tabpane` shortcode. Here’s a basic example: -{{< tabpane >}} +{{< tabpane text=true >}} {{< tab name="Example Tab 1" >}} - -This is the content inside Example Tab 0. - +This is the content inside Example Tab 1. {{< /tab >}} {{< tab name="Example Tab 2" >}} - -This is the content inside Example Tab 1. - +This is the content inside Example Tab 2. {{< /tab >}} {{< /tabpane >}} Use this shortcode to display platform-specific commands, language-specific code blocks, or comparisons — all in an elegant, user-friendly tab layout. + ### Footnotes This is a superscript number for your footnote. [^1] From 3677ea5a8339d5cb4345e53fef477e3dfac38f89 Mon Sep 17 00:00:00 2001 From: Ayush More Date: Sun, 13 Jul 2025 19:16:17 +0530 Subject: [PATCH 10/18] Update contributing-to-docs.md Signed-off-by: Ayush More --- .../en/contributing/contributing-to-docs.md | 21 ++++++++++--------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/content/en/contributing/contributing-to-docs.md b/content/en/contributing/contributing-to-docs.md index 8cb725f19..5bfc2a2b0 100644 --- a/content/en/contributing/contributing-to-docs.md +++ b/content/en/contributing/contributing-to-docs.md @@ -499,23 +499,24 @@ This is the final element on the page and there should be no margin below this. ### TabPane Shortcode Example -Layer5 docs support tabbed content using the `tabpane` shortcode. Here’s a basic example: +Layer5 docs support tabbed content using the `tabpane` shortcode. Here's a basic example: {{< tabpane text=true >}} + {{< tab name="Example Tab 1" >}} + ```text + This is the content inside Example Tab 1. + ``` + {{< /tab >}} -{{< tab name="Example Tab 1" >}} -This is the content inside Example Tab 1. -{{< /tab >}} - -{{< tab name="Example Tab 2" >}} -This is the content inside Example Tab 2. -{{< /tab >}} - + {{< tab name="Example Tab 2" >}} + ```text + This is the content inside Example Tab 2. + ``` + {{< /tab >}} {{< /tabpane >}} Use this shortcode to display platform-specific commands, language-specific code blocks, or comparisons — all in an elegant, user-friendly tab layout. - ### Footnotes This is a superscript number for your footnote. [^1] From bcf3ee3d05d952ab1bdfd9aca5487b58ab92e18a Mon Sep 17 00:00:00 2001 From: Ayush More Date: Sun, 13 Jul 2025 19:21:10 +0530 Subject: [PATCH 11/18] Update contributing-to-docs.md Signed-off-by: Ayush More --- .../en/contributing/contributing-to-docs.md | 23 +++++++++++-------- 1 file changed, 13 insertions(+), 10 deletions(-) diff --git a/content/en/contributing/contributing-to-docs.md b/content/en/contributing/contributing-to-docs.md index 5bfc2a2b0..aed6d9677 100644 --- a/content/en/contributing/contributing-to-docs.md +++ b/content/en/contributing/contributing-to-docs.md @@ -502,21 +502,24 @@ This is the final element on the page and there should be no margin below this. Layer5 docs support tabbed content using the `tabpane` shortcode. Here's a basic example: {{< tabpane text=true >}} - {{< tab name="Example Tab 1" >}} - ```text - This is the content inside Example Tab 1. - ``` - {{< /tab >}} - {{< tab name="Example Tab 2" >}} - ```text - This is the content inside Example Tab 2. - ``` - {{< /tab >}} +{{< tab name="Example Tab 1" >}} + +
This is the content inside Example Tab 1.
+ +{{< /tab >}} + +{{< tab name="Example Tab 2" >}} + +
This is the content inside Example Tab 2.
+ +{{< /tab >}} + {{< /tabpane >}} Use this shortcode to display platform-specific commands, language-specific code blocks, or comparisons — all in an elegant, user-friendly tab layout. + ### Footnotes This is a superscript number for your footnote. [^1] From 1bec6024a8c6a7e8d2cfe186130578c3d1d3f08f Mon Sep 17 00:00:00 2001 From: Ayush More Date: Mon, 14 Jul 2025 05:15:08 +0530 Subject: [PATCH 12/18] Update contributing-to-docs.md Signed-off-by: Ayush More --- content/en/contributing/contributing-to-docs.md | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/content/en/contributing/contributing-to-docs.md b/content/en/contributing/contributing-to-docs.md index aed6d9677..c148a24e7 100644 --- a/content/en/contributing/contributing-to-docs.md +++ b/content/en/contributing/contributing-to-docs.md @@ -505,13 +505,21 @@ Layer5 docs support tabbed content using the `tabpane` shortcode. Here's a basic {{< tab name="Example Tab 1" >}} -
This is the content inside Example Tab 1.
+
+
+This is the content inside Example Tab 1.
+  
+
{{< /tab >}} {{< tab name="Example Tab 2" >}} -
This is the content inside Example Tab 2.
+
+
+This is the content inside Example Tab 2.
+  
+
{{< /tab >}} From c70a7c5aef12a2aa493c046718a9957c8ef30ed8 Mon Sep 17 00:00:00 2001 From: Ayush More Date: Mon, 14 Jul 2025 05:19:15 +0530 Subject: [PATCH 13/18] Update contributing-to-docs.md Signed-off-by: Ayush More --- content/en/contributing/contributing-to-docs.md | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/content/en/contributing/contributing-to-docs.md b/content/en/contributing/contributing-to-docs.md index c148a24e7..7220333fe 100644 --- a/content/en/contributing/contributing-to-docs.md +++ b/content/en/contributing/contributing-to-docs.md @@ -505,20 +505,20 @@ Layer5 docs support tabbed content using the `tabpane` shortcode. Here's a basic {{< tab name="Example Tab 1" >}} -
-
-This is the content inside Example Tab 1.
-  
+
+
+ This is the content inside Example Tab 1. +
{{< /tab >}} {{< tab name="Example Tab 2" >}} -
-
-This is the content inside Example Tab 2.
-  
+
+
+ This is the content inside Example Tab 2. +
{{< /tab >}} @@ -528,6 +528,7 @@ This is the content inside Example Tab 2. Use this shortcode to display platform-specific commands, language-specific code blocks, or comparisons — all in an elegant, user-friendly tab layout. + ### Footnotes This is a superscript number for your footnote. [^1] From 5eb70336899ac71266c17585d22668bc0676001c Mon Sep 17 00:00:00 2001 From: Ayush More Date: Mon, 14 Jul 2025 05:22:34 +0530 Subject: [PATCH 14/18] Update contributing-to-docs.md Signed-off-by: Ayush More --- .../en/contributing/contributing-to-docs.md | 22 ++++++++----------- 1 file changed, 9 insertions(+), 13 deletions(-) diff --git a/content/en/contributing/contributing-to-docs.md b/content/en/contributing/contributing-to-docs.md index 7220333fe..ccb1164e7 100644 --- a/content/en/contributing/contributing-to-docs.md +++ b/content/en/contributing/contributing-to-docs.md @@ -501,25 +501,21 @@ This is the final element on the page and there should be no margin below this. Layer5 docs support tabbed content using the `tabpane` shortcode. Here's a basic example: -{{< tabpane text=true >}} +{{< tabpane >}} -{{< tab name="Example Tab 1" >}} +{{< tab name="Tab 0" >}} -
-
- This is the content inside Example Tab 1. -
-
+{{% highlight text %}} +This is the content inside Example Tab 1. +{{% /highlight %}} {{< /tab >}} -{{< tab name="Example Tab 2" >}} +{{< tab name="Tab 1" >}} -
-
- This is the content inside Example Tab 2. -
-
+{{% highlight text %}} +This is the content inside Example Tab 2. +{{% /highlight %}} {{< /tab >}} From 59132def2f50c9d3423834c934932da016f0b2f8 Mon Sep 17 00:00:00 2001 From: Ayush More Date: Mon, 14 Jul 2025 05:32:41 +0530 Subject: [PATCH 15/18] Update contributing-to-docs.md Signed-off-by: Ayush More --- .../en/contributing/contributing-to-docs.md | 20 ++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) diff --git a/content/en/contributing/contributing-to-docs.md b/content/en/contributing/contributing-to-docs.md index ccb1164e7..7bb15574a 100644 --- a/content/en/contributing/contributing-to-docs.md +++ b/content/en/contributing/contributing-to-docs.md @@ -501,21 +501,21 @@ This is the final element on the page and there should be no margin below this. Layer5 docs support tabbed content using the `tabpane` shortcode. Here's a basic example: -{{< tabpane >}} +{{< tabpane text=true >}} -{{< tab name="Tab 0" >}} +{{< tab header="Example Tab 1" >}} -{{% highlight text %}} +```plaintext This is the content inside Example Tab 1. -{{% /highlight %}} +``` {{< /tab >}} -{{< tab name="Tab 1" >}} +{{< tab header="Example Tab 2" >}} -{{% highlight text %}} +```plaintext This is the content inside Example Tab 2. -{{% /highlight %}} +``` {{< /tab >}} @@ -523,6 +523,12 @@ This is the content inside Example Tab 2. Use this shortcode to display platform-specific commands, language-specific code blocks, or comparisons — all in an elegant, user-friendly tab layout. + + + ### Footnotes From 871cc1cd1c39acfcd57b052a25c6852a5c066145 Mon Sep 17 00:00:00 2001 From: Ayush More Date: Mon, 14 Jul 2025 05:36:34 +0530 Subject: [PATCH 16/18] Update contributing-to-docs.md Signed-off-by: Ayush More --- .../en/contributing/contributing-to-docs.md | 19 ++++--------------- 1 file changed, 4 insertions(+), 15 deletions(-) diff --git a/content/en/contributing/contributing-to-docs.md b/content/en/contributing/contributing-to-docs.md index 7bb15574a..aed6d9677 100644 --- a/content/en/contributing/contributing-to-docs.md +++ b/content/en/contributing/contributing-to-docs.md @@ -503,19 +503,15 @@ Layer5 docs support tabbed content using the `tabpane` shortcode. Here's a basic {{< tabpane text=true >}} -{{< tab header="Example Tab 1" >}} +{{< tab name="Example Tab 1" >}} -```plaintext -This is the content inside Example Tab 1. -``` +
This is the content inside Example Tab 1.
{{< /tab >}} -{{< tab header="Example Tab 2" >}} +{{< tab name="Example Tab 2" >}} -```plaintext -This is the content inside Example Tab 2. -``` +
This is the content inside Example Tab 2.
{{< /tab >}} @@ -523,13 +519,6 @@ This is the content inside Example Tab 2. Use this shortcode to display platform-specific commands, language-specific code blocks, or comparisons — all in an elegant, user-friendly tab layout. - - - - ### Footnotes From 5acfad33fe9f5a7f8aded1fe60bfd49698a0e612 Mon Sep 17 00:00:00 2001 From: Zihan Kuang <127078886+zihanKuang@users.noreply.github.com> Date: Tue, 15 Jul 2025 14:44:27 +0800 Subject: [PATCH 17/18] Update content/en/contributing/contributing-to-docs.md Signed-off-by: Zihan Kuang <127078886+zihanKuang@users.noreply.github.com> --- content/en/contributing/contributing-to-docs.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/contributing/contributing-to-docs.md b/content/en/contributing/contributing-to-docs.md index aed6d9677..f0f6a98a1 100644 --- a/content/en/contributing/contributing-to-docs.md +++ b/content/en/contributing/contributing-to-docs.md @@ -497,7 +497,7 @@ Stumptown PBR&B keytar plaid street art, forage XOXO pitchfork selvage affogato This is the final element on the page and there should be no margin below this. ``` -### TabPane Shortcode Example +### TabPane Layer5 docs support tabbed content using the `tabpane` shortcode. Here's a basic example: From 836e626439fb867a3f92f9086ebfb20b98047f20 Mon Sep 17 00:00:00 2001 From: Ayush More Date: Wed, 16 Jul 2025 17:58:12 +0530 Subject: [PATCH 18/18] plain text Signed-off-by: Ayush More --- content/en/contributing/contributing-to-docs.md | 16 ++-------------- 1 file changed, 2 insertions(+), 14 deletions(-) diff --git a/content/en/contributing/contributing-to-docs.md b/content/en/contributing/contributing-to-docs.md index f0f6a98a1..a6358edaa 100644 --- a/content/en/contributing/contributing-to-docs.md +++ b/content/en/contributing/contributing-to-docs.md @@ -499,27 +499,15 @@ This is the final element on the page and there should be no margin below this. ### TabPane -Layer5 docs support tabbed content using the `tabpane` shortcode. Here's a basic example: - {{< tabpane text=true >}} - {{< tab name="Example Tab 1" >}} - -
This is the content inside Example Tab 1.
- +This is the content inside Example Tab 1. {{< /tab >}} - {{< tab name="Example Tab 2" >}} - -
This is the content inside Example Tab 2.
- +This is the content inside Example Tab 2. {{< /tab >}} - {{< /tabpane >}} -Use this shortcode to display platform-specific commands, language-specific code blocks, or comparisons — all in an elegant, user-friendly tab layout. - - ### Footnotes This is a superscript number for your footnote. [^1]