From 12dbc806d5a8e91660301fb64c7ae5d14d0c65ad Mon Sep 17 00:00:00 2001 From: Simon Fels Date: Fri, 15 Nov 2024 19:53:04 +0100 Subject: [PATCH] fix(ref): put links into code blocks to avoid linkcheck The addresses used in the examples should not be checked by the link checker as they are not accessible and cause the check to timeout. --- .../appliance/anbox-cloud-appliance_dashboard_register.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/reference/cmd-ref/appliance/anbox-cloud-appliance_dashboard_register.md b/reference/cmd-ref/appliance/anbox-cloud-appliance_dashboard_register.md index 92e2e977..e2c719a0 100644 --- a/reference/cmd-ref/appliance/anbox-cloud-appliance_dashboard_register.md +++ b/reference/cmd-ref/appliance/anbox-cloud-appliance_dashboard_register.md @@ -16,16 +16,18 @@ they have configured as the primary email address of their Ubuntu SSO account. With that you can run the following command to generate a registration URL: $ sudo anbox-cloud-appliance dashboard register foo@bar.com -Visit https://10.2.9.2/?register=xxx to finish your registration +Visit `https://10.2.9.2/?register=xxx` to finish your registration The registration link will by default expire after one hour. If you run the command on a non-interactive shell only the URL will be printed as output. This allows you to do +``` $ url=$(sudo anbox-cloud-appliance dashboard register foo@bar.com) $ echo "$url" https://10.2.9.2/?register=xxx +``` ```