হ্যাঁ, আপনি এইচটিএমএল ব্যবহার করে সেগুলি মার্জ করতে পারেন। আমি যখন .md
গিথুব থেকে ফাইলগুলিতে টেবিলগুলি তৈরি করি , তখন আমি সর্বদা মার্কডাউনের পরিবর্তে এইচটিএমএল কোডটি ব্যবহার করতে পছন্দ করি।
গিথুব স্বাদযুক্ত মার্কডাউন.md
ফাইলের বেসিক এইচটিএমএল সমর্থন করে । সুতরাং এটি উত্তর হবে:
এইচটিএমএল মিশ্রিত মার্কডাউন:
| Tables | Are | Cool |
| ------------- |:-------------:| -----:|
| col 3 is | right-aligned | $1600 |
| col 2 is | centered | $12 |
| zebra stripes | are neat | $1 |
| <ul><li>item1</li><li>item2</li></ul>| See the list | from the first column|
বা খাঁটি এইচটিএমএল:
<table>
<tbody>
<tr>
<th>Tables</th>
<th align="center">Are</th>
<th align="right">Cool</th>
</tr>
<tr>
<td>col 3 is</td>
<td align="center">right-aligned</td>
<td align="right">$1600</td>
</tr>
<tr>
<td>col 2 is</td>
<td align="center">centered</td>
<td align="right">$12</td>
</tr>
<tr>
<td>zebra stripes</td>
<td align="center">are neat</td>
<td align="right">$1</td>
</tr>
<tr>
<td>
<ul>
<li>item1</li>
<li>item2</li>
</ul>
</td>
<td align="center">See the list</td>
<td align="right">from the first column</td>
</tr>
</tbody>
</table>
এটি গিথুবকে এভাবে দেখায়:
style="list-style: none"
ট্যাগ গ্রহণ করবেন বলে মনে হয় নাul
।