NewPost input needs to check for cuss words and mark the cuss words in <cuss></cuss> which will tell the ContenUIRenderer to hide the word if the profanity filter is on and to unhide if profanity filter is off.
- Back end needs to run content through badwords filter and modify cuss words to have wrapped around them
- ContenUIRenderer needs to detect the and mark out the words as appropriate
Might put this into a later card as it can get more complicated
- NewPost needs to also detect cuss words and alert the user.
- This might have performance issue as the filter scans eaach word 1 by 1 and runs against a dictionary 65,000 lines long so this would require a detector to only scan the previous word when space is hit for performance reasons. On copy/paste we need a graphic that shows the content is being scanned as 300 words takes close to 1s to scan.