feat: Detect profanity using Writer Interface #123
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Describe the feature request
Create a type that implements
io.Writerthat censors the input given to it before writing to it's underlying stream.Why do you personally want this feature to be implemented?
I recursively compile thousands of markdown documents and write them to different writers. It'd be nice to wrap my writers with something that automatically removes the profanity.
Right now I never load anything ever completely into memory at once and I'd like to be able to keep it that way.
How long have you been using this project?
No response
Additional information
No response
Sounds reasonable to me. Feel free to give it a shot if you have the time to implement it