diff --git a/datapress/binding/user-binding.md b/datapress/binding/user-binding.md index 1391fd5..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** @@ -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