Markdown简明教程

2021-07-11 Views Markdown | 笔记344字2 min read

本文原文是由Markdown生成

一级标题

二级标题

三级标题

四级标题

五级标题
六级标题

一级引用

二级引用

三级引用

  • 一级列表
    • 二级列表
      • 三级列表
  1. 有序列表

    1. 有序子列表
    • 有序子列表
  • 有序列表
    • 无序子列表
    • 无序子列表

公式:

(1)a2+b2\sqrt{a^2+b^2} \tag{1}

代码:

function toCelsius(fahrenheit) {
    return (5 / 9) * (fahrenheit - 32);
}

重点文字

删除线

下划线

粗斜体

粗体

斜体

百度一下

百度Logo

这是个简单的表格

First Header Second Header Third Header
Content Cell Content Cell Content Cell
Content Cell Content Cell Content Cell

出于美观的考虑,可以把两端都包围起来

First Header Second Header Third Header
Content Cell Content Cell Content Cell
Content Cell Content Cell Content Cell

通过在标题分割行添加冒号:,你可以定义表格单元的对其格式:向左靠齐,居中和向右靠齐

First Header Second Header Third Header
Left Center Right
Left Center Right

这是一个示例的表格使用案例

名字 年龄 描述
张三 十岁 加粗的文字
王老五 二十岁 支持添加链接

点击这里回到一级标题

自定义字体样式、颜色、大小

也可以单独指定字体颜色

居左文本

居中文本

居右文本

使用html标签
换行

EOF