fix: Add Formatting for Markdown Tables (#4703)

Co-authored-by: Kuchenpirat <24235032+Kuchenpirat@users.noreply.github.com>
This commit is contained in:
Michael Genson
2024-12-11 03:33:43 -06:00
committed by GitHub
parent 285ccb408f
commit cc37147a34

View File

@@ -48,3 +48,20 @@ export default defineComponent({
}, },
}); });
</script> </script>
<style scoped>
::v-deep table {
border-collapse: collapse;
width: 100%;
}
::v-deep th, ::v-deep td {
border: 1px solid;
padding: 8px;
text-align: left;
}
::v-deep th {
font-weight: bold;
}
</style>