Markdownテーブルでセルを結合する

I am trying to make some fancyish tables in a Discourse post and cant seem to get it to work. In a nut shell I want to merge some cells to place multiple cells underneath or similar. Is this possible?

This is my syntax

| | Grouping ||
First Header | Second Header | Third Header |
------------ | :-----------: | -----------: |
Content | Long Cell ||
Content | Cell | Cell |

This is what I get

| | Grouping ||

First Header Second Header Third Header
Content Long Cell
Content Cell Cell

This is what I am trying to do

image

Any advice is appreciated!

That seems like a copy paste of multimarkdown example.

And I think Discourse is using markdown.it. Therefore not possible to do in Discourse.

フォーラムでテーブルセルを結合して表示インターフェースを最適化し、テーブルに画像を追加できるようにするソリューションを探しています。そこで、jekyll-spaceship の紹介を見つけました。
リンク: https://stackoverflow.com/questions/46621765/can-i-merge-table-rows-in-markdown

それで、誰かがそれを Discourse のコアに統合したことはありますか?まだですか?

「いいね!」 1

現在、それは不可能であり、Discourse は <td> および <th> 要素の colspan または rowspan 属性をサポートしていません。ロードマップにもないと思います。

カスタムプラグインでこれに対するサポートを追加できる可能性があります。参照: Whitelisting HTML tags / attributes

サポートされている HTML 要素のリストは次のとおりです: https://github.com/discourse/discourse/blob/main/app/assets/javascripts/pretty-text/addon/allow-lister.js#L115。テーブルタグは次の場所にあるようです: https://github.com/discourse/discourse/blob/main/app/assets/javascripts/pretty-text/engines/discourse-markdown/table.js

これが何らかの助けになるかもしれません。

コアで colspan または rowspan 属性を許可するようにリクエストしたい場合は、新しい Feature トピックを作成するとよいでしょう。:slight_smile:

「いいね!」 2

ありがとうございます。明確な推奨事項については、カテゴリ機能の記事サンプルを参照します。

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.