From 1d3208d1ac051f87865e430ff93e99c2359056a1 Mon Sep 17 00:00:00 2001 From: Gusted Date: Mon, 13 Jul 2026 00:44:13 +0200 Subject: [PATCH] Prettier update --- content/markdown/introduction-to-markdown.md | 1 + content/markdown/using-links.md | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/content/markdown/introduction-to-markdown.md b/content/markdown/introduction-to-markdown.md index ff8db4f..75f3801 100644 --- a/content/markdown/introduction-to-markdown.md +++ b/content/markdown/introduction-to-markdown.md @@ -121,6 +121,7 @@ To add footnotes use the syntax `[^name]` inline, and define them with:
```markdown Text with a footnote.[^1] + [^1]: A footnote. ``` diff --git a/content/markdown/using-links.md b/content/markdown/using-links.md index 274eb47..85f3e68 100644 --- a/content/markdown/using-links.md +++ b/content/markdown/using-links.md @@ -78,17 +78,21 @@ This is rendered as: The link parser used in Forgejo can also work with the _double square brackets_ syntax in issues and other places where markdown is rendered: + ```markdown [[https://codeberg.org/]] ``` + will get rendered as . You can also give a link description, as with the regular markdown syntax: + ```markdown [[This is a link to Codeberg|https://codeberg.org]] ``` + will be rendered as [This is a link to Codeberg](https://codeberg.org).