How can I merge column in markdown for a single value.
What I want is something like
What I am able to get is
| Experiment | TestType | Value |
|---|---|---|
| Experiment 1 | TestType1 | 98 |
| Experiment 1 | TestType2 | 73 |
| Experiment 2 | TestType1 | 93 |
| Experiment 3 | TestType2 | 79 |
I couldn't find anything good. Any help is appreciated.
Edit: So my ultimate goal was to display in given format. It turns out markdown is not capable of that. But ultimately I'm displaying it on browser which is able to parse HTML, so HTML solution works for me.
