superfluous backtick in js example
bahnfrei opened this issue · 2 comments
bahnfrei commented
you may want to remove the backtick in the javascript example file ~/.cutbox/basic.js (https://github.com/cutbox/CutBox/wiki/Javascript-Examples)
var stripTags = i => join(i).replace(/<[^>]*>/gm, "");`
vs.
var stripTags = i => join(i).replace(/<[^>]*>/gm, "");
jasonm23 commented
Thank you for the heads up
…On Wed, 7 Aug 2019, 9:25 PM Michi, ***@***.***> wrote:
you may want to remove the backtick in the javascript example file
~/.cutbox/basic.js (
https://github.com/cutbox/CutBox/wiki/Javascript-Examples)
var stripTags = i => join(i).replace(/<[^>]*>/gm, "");`
vs.
var stripTags = i => join(i).replace(/<[^>]*>/gm, "");
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#88?email_source=notifications&email_token=AAARPI6CRA6J6MGRJDGL7H3QDLELBA5CNFSM4IKALO72YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HD4TA6Q>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AAARPI7EHL34M55RKWCHTOLQDLELBANCNFSM4IKALO7Q>
.
jasonm23 commented
Fixed