From 035e2924344e6b6e225868be702554a79ad27dea Mon Sep 17 00:00:00 2001 From: Leonard Jonathan Oh Date: Thu, 9 Feb 2023 18:17:25 +0000 Subject: [PATCH] Docs (readme): Fix Tags table `Dockerfile Build Context` column markdown formatting --- README.md | 2 +- generate/templates/README.md.ps1 | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 3b40cc3..aafcd39 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ Dockerized [Varnish Agent](https://github.com/varnish/vagent2), including the [E | Tag | Dockerfile Build Context | |:-------:|:---------:| -| `:4.1.4-ubuntu-16.04`, `:latest` | [View](variants/4.1.4-ubuntu-16.04 ) | +| `:4.1.4-ubuntu-16.04`, `:latest` | [View](variants/4.1.4-ubuntu-16.04) | ## Usage diff --git a/generate/templates/README.md.ps1 b/generate/templates/README.md.ps1 index 065035f..e8c2035 100644 --- a/generate/templates/README.md.ps1 +++ b/generate/templates/README.md.ps1 @@ -15,12 +15,12 @@ $( ($VARIANTS | % { if ( $_['tag_as_latest'] ) { @" -| ``:$( $_['tag'] )``, ``:latest`` | [View](variants/$( $_['tag'] ) ) | +| ``:$( $_['tag'] )``, ``:latest`` | [View](variants/$( $_['tag'] )) | "@ }else { @" -| ``:$( $_['tag'] )`` | [View](variants/$( $_['tag'] ) ) | +| ``:$( $_['tag'] )`` | [View](variants/$( $_['tag'] )) | "@ }