Merge pull request 'fix search rendering' (#25) from mfm-search into develop
ci/woodpecker/push/woodpecker Pipeline was successful Details

Reviewed-on: AkkomaGang/pleroma-fe#25
This commit is contained in:
floatingghost 2022-07-01 12:50:44 +00:00
commit 101f15a078
1 changed files with 7 additions and 0 deletions

View File

@ -265,6 +265,13 @@ export default defineComponent({
})]
}
case 'search': {
return [h('a', {
href: `https://www.google.com/search?q=${token.props.query}`
}, token.props.content)
]
}
default: {
console.error('unrecognized ast type:', token.type)