Skip to content

Commit

Permalink
Fix #16
Browse files Browse the repository at this point in the history
  • Loading branch information
abrudz authored Jan 10, 2022
1 parent 7f4c68e commit 4ab7ffe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bqn.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
let [k, ...v] = [...lbs[i]]; v = v.join('');
let ks = []
for (let j = 0; j < tcs.length; j += 3)if (k === tcs[j + 2]) ks.push('\n' + tcs[j] + ' ' + tcs[j + 1] + ' <tab>')
for (let j = 0; j < bqk.length; j++)if (k === bqv[j]) ks.push('\n` ' + bqk[j])
for (let j = 0; j < bqk.length; j++)if (k === bqv[j]) ks.push('\n\\ ' + bqk[j])
lbh += '<b title="' + he(v + (ks.length ? '\n' + ks.join('') : '')) + '">' + k + '</b>'
}
let d = document, el = d.createElement('div'); el.innerHTML =
Expand Down

0 comments on commit 4ab7ffe

Please sign in to comment.