From 660c0f6213ea40faab45e603f7b18d45dacbbbc2 Mon Sep 17 00:00:00 2001 From: Yuliya Pazniak Date: Fri, 3 Oct 2025 16:01:12 +0300 Subject: [PATCH 1/2] update links view --- datapress/binding/user-binding.md | 2 +- src/css/custom.css | 13 +++++++++++++ 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/datapress/binding/user-binding.md b/datapress/binding/user-binding.md index 1391fd5..4bd39d8 100644 --- a/datapress/binding/user-binding.md +++ b/datapress/binding/user-binding.md @@ -139,4 +139,4 @@ Example Output Jsandye Stanbra ``` -[Read more](/twig/introduction/#access-the-current-user-record) \ No newline at end of file + [Read more](/twig/introduction/#access-the-current-user-record) \ No newline at end of file diff --git a/src/css/custom.css b/src/css/custom.css index d1b7c6a..f7f65e0 100644 --- a/src/css/custom.css +++ b/src/css/custom.css @@ -33,3 +33,16 @@ .left-pane, .right-pane { flex: 1; padding: 20px; overflow: auto; margin: 10px; /* Add margin to separate panes */ border: 1px solid #ccc; /* Optional: Add border for better visualization */ } .left-pane { background-color: #f0f0f0; align-self: flex-start; /* Aligns to the start of the container */ } .right-pane { background-color: #e0e0e0; align-self: flex-start; /* Aligns to the start of the container */ } + +/* Underline all links */ +article a { + text-decoration: underline; +} + +/* Add external link icon to external links */ +article a[href^="http"]:not([href*="docs.alexacrm.com"]):after { + content: "🔗"; + margin-left: 4px; + font-size: 0.9em; + vertical-align: middle; +} \ No newline at end of file From 927605097aceffa4bc2a646354bba52c86cad2e5 Mon Sep 17 00:00:00 2001 From: Yuliya Pazniak Date: Fri, 3 Oct 2025 16:19:04 +0300 Subject: [PATCH 2/2] remove redundant sentence --- datapress/binding/user-binding.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/datapress/binding/user-binding.md b/datapress/binding/user-binding.md index 4bd39d8..76391db 100644 --- a/datapress/binding/user-binding.md +++ b/datapress/binding/user-binding.md @@ -122,7 +122,7 @@ Here are the revised instructions for binding a user from the maker portal in tw **How to use binding information in twig** -The user object allows you to check whether the current user is bound and access their associated Dataverse record values. For more details, see [user binding](/datapress/binding/user-binding.md). +The user object allows you to check whether the current user is bound and access their associated Dataverse record values. **Example Usage**