Markdown Tips

字体

字体颜色

内嵌HTML标签

  • <span style="color:red">Aquamarine</span> => Aquamarine
  • <span style="background-color:MistyRose">Aquamarine</span> => Aquamarine

借助MathJax

  • => $\color{blue}{MathJax}$
  • => $\color{blue}\text{MathJax}$
  • => $\text{\color{blue}{MathJax}}$

字体大小

  • <span style="font-size: 120%;">1.2 larger text</span> => 1.2 larger text
  • <span style="font-size: 80%;">0.8 smaller text</span> => 0.8 smaller text

同时设置[3]

  • <span style="color:red; background-color:lightgray; font-size: 120%; text-align: center;">Test Text</span> => Test Text

表格

表格内容位置

内容居左 内容居中 内容居右
A A A
B B B

参考

  1. 为什么markdown不支持字号和字体颜色?
  2. CSDN-markdown编辑器语法——字体、字号与颜色
  3. Jekyll kramdown how to center text