This macro displays a mention of the user who created the current Confluence page. If the current user is the page's creator, the mention is styled in blue; otherwise, it is styled in gray. The macro uses the $StringUtils.equals() method to check the user ID.
## Check if current user is the author
#set ($isCurrentUser = $StringUtils.equals( $user.accountId, $page.authorId ))
#if ( $isCurrentUser )
## Only current user styled with blue
#set( $blueStyle = "aui-lozenge-inprogress" )
#else
## Retrieve author details and rewrite user variable
#set ($user = $ConfluenceManager.get("/wiki/rest/api/user?accountId=$page.authorId" ))
#end
## Return the Mention
<a href="${baseUrl}/people/${user.accountId}">
<span class="aui-lozenge $blueStyle">
@$user.displayName
</span>
</a>Display the creation date of the current Confluence page
Generate IDs in Base32 format
Get the latest cryptocurrency exchange rates for major coins
Create dropdown menus in Confluence Cloud with custom option sets, multiselect support, and permission-based access controls
Convert a specified amount of cryptocurrency to a fiat currency
Retrieve and display all page content properties in an AUI sortable table
Display Confluence page edit and view restrictions to provide essential permission details, including users, groups, and inherited access
Display a custom list of recently updated content
Perform text searches within pages, blog posts, and attachments
Embed external content such as web pages, forms, slides and charts as iframe in Confluence pages, write custom HTML, and use CSS and Javascript for better looks and features