hugo-theme-relearn/exampleSite/content/shortcodes/highlight.en.md

193 lines
6.3 KiB
Markdown
Raw Normal View History

+++
2023-06-21 23:34:12 +00:00
description = "Render code with a syntax highlighter"
title = "Highlight"
+++
The `highlight` shortcode renders your code with a syntax highlighter.
2023-08-12 22:58:41 +00:00
{{< highlight lineNos="true" type="py" wrap="true" title="python" >}}
print("Hello World!")
{{< /highlight >}}
## Usage
2023-08-12 22:58:41 +00:00
This shortcode is fully compatible with Hugo's [`highlight` shortcode](https://gohugo.io/content-management/syntax-highlighting/#highlight-shortcode) but **offers some extensions**.
It is called interchangeably in the same way as Hugo's own shortcode providing positional parameter or by simply using Markdown codefences.
2024-02-22 22:17:04 +00:00
You are free to also call this shortcode from your own partials. In this case it resembles Hugo's [`highlight` function](https://gohugo.io/functions/highlight/) syntax if you call this shortcode as a partial using compatibility syntax.
While the examples are using shortcodes with named parameter it is recommended to use Markdown codefences instead. This is because more and more other software supports Markdown codefences (eg. GitHub) and so your Markdown becomes more portable.
{{< tabs groupid="shortcode-parameter">}}
{{% tab title="markdown" %}}
````md
2023-08-12 22:58:41 +00:00
```py { lineNos="true" wrap="true" title="python" }
print("Hello World!")
```
````
{{% /tab %}}
{{% tab title="shortcode" %}}
````go
2023-08-12 22:58:41 +00:00
{{</* highlight lineNos="true" type="py" wrap="true" title="python" */>}}
print("Hello World!")
{{</* /highlight */>}}
````
{{% /tab %}}
{{% tab title="shortcode (positional)" %}}
````go
2023-08-12 22:58:41 +00:00
{{</* highlight py "lineNos=true,wrap=true,title=python" */>}}
print("Hello World!")
{{</* /highlight */>}}
````
{{% /tab %}}
{{% tab title="partial" %}}
````go
{{ partial "shortcodes/highlight.html" (dict
"page" .
"content" "print(\"Hello World!\")"
"lineNos" "true"
"type" "py"
"wrap" "true"
2023-08-12 22:58:41 +00:00
"title" "python"
)}}
````
{{% /tab %}}
{{% tab title="partial (compat)" %}}
````go
{{ partial "shortcodes/highlight.html" (dict
"page" .
"content" "print(\"Hello World!\")"
2023-08-12 22:58:41 +00:00
"options" "lineNos=true,wrap=true,title=python"
"type" "py"
)}}
````
{{% /tab %}}
{{< /tabs >}}
### Parameter
| Name | Position | Default | Notes |
|-----------------------|--------- | -----------------|-------------|
| **type** | 1 | _&lt;empty&gt;_ | The language of the code to highlight. Choose from one of the [supported languages](https://gohugo.io/content-management/syntax-highlighting/#list-of-chroma-highlighting-languages). Case-insensitive. |
2024-04-12 15:30:16 +00:00
| **title** | | _&lt;empty&gt;_ | **Extension**. Arbitrary title for code. This displays the code like a [single tab](shortcodes/tab) if `hl_inline=false` (which is Hugo's default). |
| **wrap** | | see notes | **Extension**. When `true` the content may wrap on long lines otherwise it will be scrollable.<br><br>The default value can be set in your `hugo.toml` and overwritten via frontmatter. [See below](#configuration). |
| **options** | 2 | _&lt;empty&gt;_ | An optional, comma-separated list of zero or more [Hugo supported options](https://gohugo.io/functions/highlight/#options) as well as extension parameter from this table. |
| _**&lt;option&gt;**_ | | _&lt;empty&gt;_ | Any of [Hugo's supported options](https://gohugo.io/functions/highlight/#options). |
| _**&lt;content&gt;**_ | | _&lt;empty&gt;_ | Your code to highlight. |
## Configuration
Default values for [Hugo's supported options](https://gohugo.io/functions/highlight/#options) can be set via [goldmark settings](https://gohugo.io/getting-started/configuration-markup/#highlight) in your `hugo.toml`
Default values for extension options can be set via params settings in your `hugo.toml` or be overwritten by frontmatter for each individual page.
### Global Configuration File
2024-04-12 15:30:16 +00:00
You can configure the color style used for code blocks in your [color variants stylesheet](basics/branding#syntax-highlighting) file.
2023-11-25 13:41:13 +00:00
#### Recommended Settings
2024-03-02 10:04:52 +00:00
{{< multiconfig file=hugo >}}
[markup]
[markup.highlight]
lineNumbersInTable = false
noClasses = false
2024-03-02 10:04:52 +00:00
{{< /multiconfig >}}
#### Optional Settings
2024-03-02 10:04:52 +00:00
{{< multiconfig file=hugo >}}
[params]
highlightWrap = true
2024-03-02 10:04:52 +00:00
{{< /multiconfig >}}
### Page's Frontmatter
2024-03-02 10:04:52 +00:00
{{< multiconfig fm=true >}}
highlightWrap = true
2024-03-02 10:04:52 +00:00
{{< /multiconfig >}}
## Examples
2023-08-12 22:58:41 +00:00
### Line Numbers with Starting Offset
As mentioned above, line numbers in a `table` layout will shift if code is wrapping, so better use `inline`. To make things easier for you, set `lineNumbersInTable = false` in your `hugo.toml` and add `lineNos = true` when calling the shortcode instead of the specific values `table` or `inline`.
````go
2023-08-12 22:58:41 +00:00
{{</* highlight lineNos="true" lineNoStart="666" type="py" */>}}
# the hardest part is to start writing code; here's a kickstart; just copy and paste this; it's free; the next lines will cost you serious credits
print("Hello")
print(" ")
print("World")
print("!")
{{</* /highlight */>}}
````
2023-08-12 22:58:41 +00:00
{{< highlight lineNos="true" lineNoStart="666" type="py" >}}
# the hardest part is to start writing code; here's a kickstart; just copy and paste this; it's free; the next lines will cost you serious credits
print("Hello")
print(" ")
print("World")
print("!")
{{< /highlight >}}
### Markdown Codefence with Title
2023-08-12 22:58:41 +00:00
2024-03-02 10:04:52 +00:00
````md
2023-08-12 22:58:41 +00:00
```py { title="python" }
# a bit shorter
print("Hello World!")
```
````
```py { title="python" }
# a bit shorter
print("Hello World!")
```
### With Wrap
````go
{{</* highlight type="py" wrap="true" hl_lines="2" */>}}
# Quicksort Python One-liner
lambda L: [] if L==[] else qsort([x for x in L[1:] if x< L[0]]) + L[0:1] + qsort([x for x in L[1:] if x>=L[0]])
# Some more stuff
{{</* /highlight */>}}
````
{{< highlight type="py" wrap="true" hl_lines="2" >}}
# Quicksort Python One-liner
lambda L: [] if L==[] else qsort([x for x in L[1:] if x< L[0]]) + L[0:1] + qsort([x for x in L[1:] if x>=L[0]])
# Some more stuff
{{< /highlight >}}
### Without Wrap
````go
{{</* highlight type="py" wrap="false" hl_lines="2" */>}}
# Quicksort Python One-liner
lambda L: [] if L==[] else qsort([x for x in L[1:] if x< L[0]]) + L[0:1] + qsort([x for x in L[1:] if x>=L[0]])
# Some more stuff
{{</* /highlight */>}}
````
{{< highlight type="py" wrap="false" hl_lines="2">}}
# Quicksort Python One-liner
lambda L: [] if L==[] else qsort([x for x in L[1:] if x< L[0]]) + L[0:1] + qsort([x for x in L[1:] if x>=L[0]])
# Some more stuff
{{< /highlight >}}