Description
Modify TextArea component on Comments so that when a user is tagged with the @ key, the tag is a different color than the rest of the text (usually blue). There are a few approaches to this but some involve the inject HTML method which we should avoid for XSS attack reasons. I'm drawn towards a CSS Mirroring technique which avoids this.
Proposed solution
Attempt a CSS Mirroring technique.
If fails, attempt another approach but avoid HTML injection
Last resort, use 3rd party library
Description
Modify TextArea component on Comments so that when a user is tagged with the @ key, the tag is a different color than the rest of the text (usually blue). There are a few approaches to this but some involve the inject HTML method which we should avoid for XSS attack reasons. I'm drawn towards a CSS Mirroring technique which avoids this.
Proposed solution
Attempt a CSS Mirroring technique.
If fails, attempt another approach but avoid HTML injection
Last resort, use 3rd party library