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