Commonly used Markdown syntax records

  1. Text color modification

    <font color='red'>红色字体</font>
    <font color='#0000FF'>蓝色字体</font>
    

    Red font
    blue font

  2. Keyboard keys

    <kbd>Ctrl</kbd> + <kbd>C</kbd>
    

    Ctrl + C

  3. Table cell merging (using html <table>, <tr>, <th>, <td>tags)
    colspanControl how many columns the
    rowspantable spans Control how many rows the table spans

    	<table>
    	<tr>
    		<th></th>
    		<th>第一列</th>
    		<th>第二列</th>
    		<th>第三列</th>
    	</tr>
    	<tr>
    		<td>第一行</td>
    		<td>data</td>
    		<td colspan=2>data</td>
    	</tr>
    	<tr>
    		<td rowspan=2>第二、三行</td>
    		<td>data</td>
    		<td colspan=2>data</td>
    	</tr>
    </table>
    
    first row the second list Third column
    first row data Cross-column data
    Second and third lines data data data
    data data data

Guess you like

Origin blog.csdn.net/SJ1551/article/details/109149441