1
0
mirror of synced 2025-12-22 11:26:57 -05:00

Convert em to mark in search results (#17391)

This commit is contained in:
Kevin Heis
2021-01-20 13:33:31 -08:00
committed by GitHub
parent aee3e7aced
commit cdb1e4a849
2 changed files with 8 additions and 8 deletions

View File

@@ -39,6 +39,6 @@ export default function h (tagName, ...children) {
}
export const tags = Object.fromEntries(
['div', 'form', 'a', 'input', 'button', 'ol', 'li', 'em']
['div', 'form', 'a', 'input', 'button', 'ol', 'li', 'mark']
.map(tagName => [tagName, (...args) => h(tagName, ...args)])
)