Blogger Information
Blog 42
fans 0
comment 0
visits 15664
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
0701 Markdown语法/emmet语法
小言
Original
445 people have browsed it

markdown 语法练习

1.markdown 分几级

  1. # 我是一级
  2. ## 我是二级
  3. ### 我是三级
  4. #### 我是四线
  5. 最多六级

注释讲解

语法注释 使用方法

单行使用 直接输入内容 使用方法

  1. 多行注释

2.列表 有序 无序

无序

  • list
  • list
    • list
    • list

有序

  1. list1
  2. list2
    2.1. list1

3.有序无序使用方法

  1. ### 无序
  2. - list
  3. - list
  4. - list
  5. - list
  6. ### 有序
  7. 1. list1
  8. 2. list2
  9. 2.1. list1

4.表格

id name address date
1 小王 北京 5-1
2 小张 上海 6-1
3 小李 天津 7-1
4 小东 东北 8-1
  1. |id |name |address |date
  2. |---|---|---|---|上下连接处不可有多余的回车。要不不会实现显示效果
  3. |1 |小王 |北京 |5-1
  4. |2 |小张 |上海 |6-1
  5. |3 |小李 |天津 |7-1
  6. |4 |小东 |东北 |8-1

5.引入图片 或者超链接

图片

20

超级链接

http://www.baidu.com

emmet语法

  1. table>{学生信息表}+(thead>tr>th{标题$@5}*5)+(tbody>tr*5>td{名字$}*5)
  2. <table>
  3. 学生信息表
  4. <thead>
  5. <tr>
  6. <th>标题5</th>
  7. <th>标题6</th>
  8. <th>标题7</th>
  9. <th>标题8</th>
  10. <th>标题9</th>
  11. </tr>
  12. </thead>
  13. <tbody>
  14. <tr>
  15. <td>名字1</td>
  16. <td>名字2</td>
  17. <td>名字3</td>
  18. <td>名字4</td>
  19. <td>名字5</td>
  20. </tr>
  21. <tr>
  22. <td>名字1</td>
  23. <td>名字2</td>
  24. <td>名字3</td>
  25. <td>名字4</td>
  26. <td>名字5</td>
  27. </tr>
  28. <tr>
  29. <td>名字1</td>
  30. <td>名字2</td>
  31. <td>名字3</td>
  32. <td>名字4</td>
  33. <td>名字5</td>
  34. </tr>
  35. <tr>
  36. <td>名字1</td>
  37. <td>名字2</td>
  38. <td>名字3</td>
  39. <td>名字4</td>
  40. <td>名字5</td>
  41. </tr>
  42. <tr>
  43. <td>名字1</td>
  44. <td>名字2</td>
  45. <td>名字3</td>
  46. <td>名字4</td>
  47. <td>名字5</td>
  48. </tr>
  49. </tbody>
  50. </table>
Correcting teacher:PHPzPHPz

Correction status:qualified

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post