From dd23f69a6f5f05e03d2fee9943c2744ebf800c20 Mon Sep 17 00:00:00 2001 From: Robin Jarry Date: Mon, 29 Nov 2021 12:51:05 +0100 Subject: Fix broken relative links For some obscure reason yet to be identified, *some* (not all) relative links that use "../" to reference parent items in the repository point to invalid URLs. This may be an issue with the rendering process from markdown to html. Replace relative links with absolute ones. Signed-off-by: Robin Jarry --- git.sr.ht/index.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'git.sr.ht') diff --git a/git.sr.ht/index.md b/git.sr.ht/index.md index ec281e4..2a2614e 100644 --- a/git.sr.ht/index.md +++ b/git.sr.ht/index.md @@ -21,8 +21,8 @@ Here are some good resources: We do have some general resources for learning how to use git the sr.ht way: -- [Using git-send-email for sending and reviewing patches on sr.ht](../git.sr.ht/send-email.md) -- [Code review with lists.sr.ht](../lists.sr.ht/code-review.md) +- [Using git-send-email for sending and reviewing patches on sr.ht](/git.sr.ht/send-email.md) +- [Code review with lists.sr.ht](/lists.sr.ht/code-review.md) # SSH host keys @@ -146,8 +146,8 @@ far. # Referencing tickets in git commit messages -If your source repository is linked to a [project](../hub.sr.ht/index.md), you -may interact with [todo.sr.ht](../todo.sr.ht/index.md) tickets via specific git +If your source repository is linked to a [project](/hub.sr.ht/index.md), you +may interact with [todo.sr.ht](/todo.sr.ht/index.md) tickets via specific git commit [trailers](https://git-scm.com/docs/git-interpret-trailers). The trailer values must be valid URLs to tickets. Any other value will be ignored. A comment will be inserted in the referenced tickets with a back-link to the -- cgit