FastComments.com
Here you can edit and run the code snippet from our documentation.
Example Code Snippet "The Comment Mentions Object"
interface CommentUserMention { /** The user id. For SSO users, this will have your tenant id prefixed. **/ id: string /** The final @mention tag text, including the @ symbol. **/ tag: string /** The original @mention tag text, including the @ symbol. **/ rawTag: string /** What type of user was tagged. user = FastComments.com account. sso = SSOUser. **/ type: 'user'|'sso' /** If the user opts out of notifications, this will still be set to true. **/ sent: boolean }
Result