markdown语法

本文仅用于测试博客园对markdown的显示效果

1、标题

h1 标题

h2 标题

h3 标题

h4 标题

h5 标题
h6 标题

2、文本相关

This is bold text 加粗文本
This is italic text 斜体
Strikethrough 删除线

3、水平线


4、引用

这是一段引用的文本

5、列表

无序列表:

  • Create a list by starting a line with +, -, or *
  • Sub-lists are made by indenting 2 spaces:
    • Marker character change forces new list start:
    • Ac tristique libero volutpat at

有序列表:

  1. Lorem ipsum dolor sit amet
  2. Consectetur adipiscing elit
  3. Integer molestie lorem at massa

6、代码

行内代码

Inline code

代码块

var foo = function (bar) {
  return bar++;
};

console.log(foo(5));
posted @ 2023-01-09 21:00  海浪博客  阅读(15)  评论(0编辑  收藏  举报