From 65b4e79b6597cfe868d5bea44a6cb27fab0b1ea8 Mon Sep 17 00:00:00 2001 From: Matt Riggott Date: Thu, 31 Aug 2017 16:31:27 +0000 Subject: [PATCH] Correct GitLab project pipelines URL The < and > characters in the URL weren't getting escaped, instead acting as if they were HTML elements. This meant the URL was displayed as https://gitlab.com///pipelines, instead of https://gitlab.com///pipelines. --- content/hosting-and-deployment/hosting-on-gitlab.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/hosting-and-deployment/hosting-on-gitlab.md b/content/hosting-and-deployment/hosting-on-gitlab.md index 0941caf4e..93489d948 100644 --- a/content/hosting-and-deployment/hosting-on-gitlab.md +++ b/content/hosting-and-deployment/hosting-on-gitlab.md @@ -70,7 +70,7 @@ git push -u origin master ## Wait for Your Page to Build -That's it! You can now follow the CI agent building your page at https://gitlab.com///pipelines. +That's it! You can now follow the CI agent building your page at `https://gitlab.com///pipelines`. After the build has passed, your new website is available at `https://.gitlab.io//`.