Skip to content
This repository has been archived by the owner on Feb 23, 2021. It is now read-only.

Commit

Permalink
lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
tamarahills committed Sep 7, 2018
1 parent c0d4fbd commit c8f7bdb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion command/texttools.js
Expand Up @@ -26,7 +26,7 @@ const texttools = {

cleanText: function(htmlStr) {
// Remove the HTML marks.
strippedHtml = htmlStr.replace(/<[^>]+>/g, ' ');
let strippedHtml = htmlStr.replace(/<[^>]+>/g, ' ');

// Now replace the quotes and other markups.
strippedHtml = strippedHtml
Expand Down

0 comments on commit c8f7bdb

Please sign in to comment.