FastComments.com
Here you can edit and run the code snippet from our documentation.
Example Code Snippet "A Simple Extension - Continued"
(function () { const extension = FastCommentsUI.extensions.find((extension) => { return extension.id === 'my-extension'; }); extension.commentFilter = function(comment, html) { return `
The user's name is ${comment.commenterName}!
` + html; } })();
Result