markdown table stuff

This commit is contained in:
Cloudburst 2022-08-27 11:01:03 +02:00 committed by GitHub
parent 1b2f76b8fa
commit a6ee650bef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 1 deletions

View File

@ -27,8 +27,14 @@ const componentMap = {
li: (props) => {
return <li className="step" {...props} />
},
table: (props) => {
return <table className="table w-full" {...props} />
},
tr: (props) => {
return <tr className="hover" {...props} />
},
hr: (props) => {
return <div class="divider" {...props} />
return <div className="divider" {...props} />
}
}