0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2025-12-25 20:33:51 +00:00

Revert "Remove stray console.logs."

This reverts commit 1861c7db69.
This commit is contained in:
David Bolack
2024-01-18 09:51:07 -06:00
parent 8bd8f0fc37
commit 8b31966c2b

View File

@@ -241,7 +241,10 @@ 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],
@@ -250,6 +253,7 @@ const underline = {
}
},
renderer(token) {
console.log()
return `<u>${this.parser.parseInline(token.tokens)}</u>`;
}
};