[github-flavored-markdown] github markdown colspan

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>

된다

HTML 테이블 출력


답변

최소 솔루션 손상 :

| One    | Two | Three | Four    | Five  | Six
| -
| Span <td colspan=3>triple  <td colspan=2>double

따라서 </td>속도를 위해 닫기 를 생략 할 수 있으며 일관성을 위해 떠날 수 있습니다.

http://markdown-here.com/livedemo.html의 결과 :
colspan이있는 마크 다운 테이블

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|

이것은

HTML 표


답변

나는 최근에 똑같은 일을해야했고 colspan이 연속적인 파이프로 잘 작동하는 것에 기뻤다 ||

MultiMarkdown v4.5

v4.5 (macports에서 최신) 및 v5.4 (homebrew에서 최신)에서 테스트되었습니다. 제공하는 라이브 미리보기 사이트에서 작동하지 않는 이유를 모르겠습니다.

제가 시작한 간단한 테스트는 다음과 같습니다.

| Header ||
|--------------|
| 0 | 1 |

명령 사용 :

multimarkdown -t html test.md > test.html


답변

추가 break하면 문제가 해결됩니다. 마크 다운은 많은 기능을 지원하지 않으므로 셀에 둘 이상의 레코드를 저장할 수 있습니다.


답변