Blogger Information
Blog 4
fans 0
comment 0
visits 1331
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
一种轻量级标记语言 markdown
༒唯一࿈༒
Original
351 people have browsed it

初学markdown

由于Markdown 的轻量化、易读易写特性,并且对于图片,图表、数学式都有支持,许多网站都广泛使用 Markdown 来撰写帮助文档或是用于论坛上发表消息。
如 GitHub、Reddit、Diaspora、Stack Exchange、OpenStreetMap 、SourceForge、简书等,甚至还能被使用来撰写电子书。

一级菜单是标题 #;

二级菜单:是菜单标题 ##(带分隔符)

三级菜单:是文本内容 ###;


这里可以用分隔符表 - - -


代码段表示:用于代码块的展示

``` 输入代码的语言名

输入需要展示的代码段

```

  1. //js
  2. const x = true
  3. if (x) {
  4. console.log(true)
  5. }
  1. //php
  2. $arr1 = "Learn";
  3. $arr2 = "Markdown";
  4. echo $arr1." ".$arr2;

在文字中输出代码 echo "hello world"

格式: ` 输入需要显示的内容 `

引用内容

这是一段引用的第三方内容:内容前用右箭头 > 表示

表格样式

id name age addtime
1 小赵 22 2023-03-09
2 小李 13 2023-01-08
3 小王 20 2022-02-15

超链接

1、 [链接名称](链接地址)
2、 <链接地址>

百度一下

https://php.cn

图片

图片与链接是一样的,只是需要前面加一个感叹号
格式: ![ 图片描述名称 ]( 图片链接地址 )

图片名称

列表样式

1、有序 格式:数字 列表内容

  1. item1
  2. item2
  3. item3

2、无序 格式: - 列表内容

  • item1
  • item2
  • item3
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
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!