directory

 

Add directories on CSDN using Markdown?

Markdown uses color fonts?

How many rows or columns does a cell occupy in a Markdown table?


Add directories on CSDN using Markdown?

Add @[TOC] to the first line, as shown:

 

Markdown uses color fonts?

$\color{red}{xxxx}$   

Effect: XXXX in red

 

How many rows or columns does a cell occupy in a Markdown table?

1. Use the <table> tag; 2. Use rowSpan colspan for <th> or <td> on a specific element.

<table>

<tr>

<th>  </th>

<th>  </th>

</tr>

<tr>

<td>  </td>

<td>  </td>

</tr>

</table>