From 5f8e18d9510358143d0616ee4fe17e1220b3d399 Mon Sep 17 00:00:00 2001 From: Luiz Carvalho Date: Tue, 27 Aug 2024 17:14:20 -0400 Subject: [PATCH] Escape curly braces in docs Otherwise, asciidoctor assumes it's meant to be a reference and throws a warning: > skipping reference to missing attribute The warning causes the website build to halt. Signed-off-by: Luiz Carvalho --- docs/modules/ROOT/pages/configuration.adoc | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/modules/ROOT/pages/configuration.adoc b/docs/modules/ROOT/pages/configuration.adoc index 48c2a5557..8c712131f 100644 --- a/docs/modules/ROOT/pages/configuration.adoc +++ b/docs/modules/ROOT/pages/configuration.adoc @@ -563,7 +563,7 @@ The `policy` and `data` fields in the configuration represent the URI of the pol === Local File -A local file path scheme, such as the following, may be utilized. +A local file path scheme, such as the following, may be utilized. * `file://` @@ -594,7 +594,7 @@ You may also use the `git::` prefix to specify a Git repository URL. The followi NOTE: In all git URL forms, the `.git` extension is optional. -NOTE: In all git URL forms, the `?ref=` is optional and defaults to the repository's default branch. +NOTE: In all git URL forms, the `?ref=` is optional and defaults to the repository's default branch. NOTE: In all git URL forms, the `//` is optional and defaults to the root of the repository. @@ -626,15 +626,15 @@ An OCI registry URL may be utilized. The following registry hosts have automatic * gcr.io * registry.gitlab.com * pkg.dev -* [0-9]{12}.dkr.ecr.[a-z0-9-]*.amazonaws.com +* [0-9]\{12\}.dkr.ecr.[a-z0-9-]*.amazonaws.com * quay.io You may also use the `oci::` prefix to specify an OCI registry URL: * `oci:///:` -* `oci:///@` +* `oci:///@` * `oci::/:` -* `oci::/:@` +* `oci::/:@` NOTE: the is optional and defaults to `latest`. -NOTE: the is optional and defaults to the latest digest. \ No newline at end of file +NOTE: the is optional and defaults to the latest digest.