github markdown 에 ‘ colspan ‘을 사용 하는 방법이 있습니까?
하나의 행이 4 개의 열을 차지하는 테이블을 만들려고합니다.
| One | Two | Three | Four |
| ------------- |-------------| ---------| ------------- |
| One | Two | Three | Four |
| One | Two | Three | Four |
| ------------- |-------------| ---------| ------------- |
| Span Across ||||
위의 http://markdown-here.com/livedemo.html 을 붙여 넣으면 실시간 미리보기를 볼 수 있습니다
.
답변
GitHub에서 HTML 테이블을 사용할 수 있지만 StackOverflow 에서는 사용할 수 없습니다 .
<table>
<tr>
<td>One</td>
<td>Two</td>
</tr>
<tr>
<td colspan="2">Three</td>
</tr>
</table>
된다
답변
최소 솔루션 손상 :
| One | Two | Three | Four | Five | Six
| -
| Span <td colspan=3>triple <td colspan=2>double
따라서 </td>
속도를 위해 닫기 를 생략 할 수 있으며 일관성을 위해 떠날 수 있습니다.
http://markdown-here.com/livedemo.html의 결과 :
Jupyter Markdown에서 작동합니다.
최신 정보:
2019 년 현재 두 번째 라인의 모든 파이프는 Jupyter Markdown에서 필수입니다.
| One | Two | Three | Four | Five | Six
|-|-|-|-|-|-
| Span <td colspan=3>triple <td colspan=2>double
최소한 :
One | Two | Three | Four | Five | Six
-|||||-
Span <td colspan=3>triple <td colspan=2>double
답변
그렇게 할 방법이 없습니다. HTML 표를 사용하거나 여러 셀에 동일한 텍스트를 넣으십시오.
이렇게 :
| Can Reorder | 2nd operation |2nd operation |2nd operation |
| :---: | --- |
|1st operation|Normal Load <br/>Normal Store| Volatile Load <br/>MonitorEnter|Volatile Store<br/> MonitorExit|
|Normal Load <br/> Normal Store| | | No|
|Volatile Load <br/> MonitorEnter| No|No|No|
|Volatile store <br/> MonitorExit| | No|No|
이것은
답변
답변
추가 break
하면 문제가 해결됩니다. 마크 다운은 많은 기능을 지원하지 않으므로 셀에 둘 이상의 레코드를 저장할 수 있습니다.