{% include toc title="Index" %}
Or simpley add toc: true on the front matter
Include code as a gist into the Jekyll post. Uses jekyll-gist plugin.
{% gist nitinkc/8a3eb81f7ccf93b013a2fe8455a04703 %}
| Column Header 1 | Column Header 1 |
|---|---|
Site Build Time to be displayed{{ site.time }} |
2024-11-23 19:52:24 +0530 |
{{ 'now' | date: "%Y/%m/%d" }} |
2024/11/23 |
{{ 'now' | date_to_rfc822 }} |
Sat, 23 Nov 2024 19:52:27 +0530 |
{{ 'now' | date: "%C" }} |
20 |
{{ 'now' | date: "%c" }} |
Sat Nov 23 19:52:27 2024 |
{{ 'now' | date: "%a, %b %-d %Y - %r %Z" }} |
Sat, Nov 23 2024 - 07:52:27 PM IST |
If youβre building your pages with markdown, use the following examples to generate internal links.
[Link title]({{ site.baseurl }}{% link index.html %})
[Link title]({% post_url 2016-04-04-jekyll-blog-GitHub-hosting %})
[Link title]({{ site.baseurl }}{% post_url 2016-04-04-jekyll-blog-GitHub-hosting %})

{% raw %} and end with {% endraw %} {{ tag }}Use backtick quotes (`) to display a liquid tag as a span of code .
| Column Header 1 | Column Header 1 |
| :--- | :--- |
| βE | Move to the last location you edited. |
| β + 1 |It activates the quick fix.|
In the header tag add
---
sidebar:
nav: "algo"
---
Notice emphasized with the {: .notice} class.
Notice emphasized with the {: .notice--primary} class.
Notice emphasized with the {: .notice--info} class.
Notice emphasized with the {: .notice--warning} class.
Notice emphasized with the {: .notice--success} class.
Notice emphasized with the {: .notice--danger} class.
{::options parse_block_html="true" /}<details>
<summary markdown ="span">text</summary>
</details>
markdown: kramdown
kramdown:
parse_block_html: true
parse_span_html: true
<details>
<summary>text</summary>
</details>