Mardown Table w/ Component Rows #1456
Answered
by
ChristianMurphy
allcentury
asked this question in
Q&A
-
I have a table where I want some of the rows to have a border (kinda like this)... So what I think I want is to be able to tag certain However this doesn't work: export const BlueRow = () => <div class="blue-row">G | H</div>
Col | Col2
--|---
A | B
C | D
E | F
<BlueRow /> Is there anyway to do what I'm suggesting? |
Beta Was this translation helpful? Give feedback.
Answered by
ChristianMurphy
Feb 3, 2021
Replies: 1 comment
-
Github flavored markdown doesn't have a mechanism for customizing rows. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
ChristianMurphy
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Github flavored markdown doesn't have a mechanism for customizing rows.
However, MDX just support JSX, and styles can be added using HTML tags and/or React components to generate the table.