Skip to content

Commit

Permalink
Remove stray console.logs.
Browse files Browse the repository at this point in the history
  • Loading branch information
dbolacksn committed Dec 14, 2023
1 parent a88b256 commit 1861c7d
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions shared/naturalcrit/markdown.js
Original file line number Diff line number Diff line change
Expand Up @@ -241,10 +241,7 @@ const underline = {
tokenizer(src, tokens) {
const uRegex = /^\b_(?![_\s])(.*?[^_\s])_\b/m;
const match = uRegex.exec(src);
console.log('Looking');
if(match?.length) {
console.log('found!');
console.log(match);
return {
type : 'underline',
raw : match[0],
Expand All @@ -253,7 +250,6 @@ const underline = {
}
},
renderer(token) {
console.log()
return `<u>${this.parser.parseInline(token.tokens)}</u>`;
}
};
Expand Down

0 comments on commit 1861c7d

Please sign in to comment.