Merge commit '8b9803425e63e1b1801f8d5d676e96368d706722'

This commit is contained in:
Bjørn Erik Pedersen
2024-06-21 09:41:24 +02:00
475 changed files with 7408 additions and 4720 deletions

View File

@@ -1,12 +1,12 @@
---
title: Quick reference guides
linkTitle: Overview
linkTitle: In this section
description: Quick reference guides to Hugo's features, functions, and methods.
categories: []
keywords: []
menu:
docs:
identifier: quick-reference-overview
identifier: quick-reference-in-this-section
parent: quick-reference
weight: 10
weight: 10

View File

@@ -1,6 +1,6 @@
---
title: Emojis
description: Include emoji shortcodes in your markdown or templates.
description: Include emoji shortcodes in your Markdown or templates.
categories: [quick reference]
keywords: [emoji]
menu:
@@ -11,13 +11,13 @@ weight: 20
toc: true
---
Configure Hugo to enable emoji processing in markdown:
Configure Hugo to enable emoji processing in Markdown:
{{< code-toggle file=hugo >}}
enableEmoji = true
{{< /code-toggle >}}
With emoji processing enabled, this markdown:
With emoji processing enabled, this Markdown:
```md
Hello! :wave:
@@ -37,8 +37,8 @@ To process an emoji shortcode from within a template, use the [`emojify`] functi
{{ "Hello! :wave:" | .RenderString }}
```
[`emojify`]: /functions/transform/emojify
[`RenderString`]: /methods/page/renderstring
[`emojify`]: /functions/transform/emojify/
[`RenderString`]: /methods/page/renderstring/
## Introduction

View File

@@ -31,7 +31,7 @@ Use these `Site` methods when rendering lists on any page.
Use the [`where`] function to filter page collections.
[`where`]: /functions/collections/where
[`where`]: /functions/collections/where/
## Sort