mirror of
https://github.com/naturalcrit/homebrewery.git
synced 2025-12-26 20:22:42 +00:00
Remove stray console.logs.
This commit is contained in:
@@ -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],
|
||||
@@ -253,7 +250,6 @@ const underline = {
|
||||
}
|
||||
},
|
||||
renderer(token) {
|
||||
console.log()
|
||||
return `<u>${this.parser.parseInline(token.tokens)}</u>`;
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user