From 5b2d93b36cec26d836bd9f344f483458c7bb84c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=AE=B8=E5=A4=9A=E9=92=B1?= <3381810463@qq.com> Date: Wed, 4 Sep 2024 20:48:20 +0800 Subject: [PATCH] =?UTF-8?q?=E7=AC=AC=E4=B8=80=E6=AC=A1=E7=AC=94=E8=AE=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...\260--markdown\350\257\255\346\263\225.md" | 29 +++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 "\350\256\270\350\211\263\347\254\224\350\256\260/9.4\347\254\254\344\270\200\346\254\241\347\254\224\350\256\260--markdown\350\257\255\346\263\225.md" diff --git "a/\350\256\270\350\211\263\347\254\224\350\256\260/9.4\347\254\254\344\270\200\346\254\241\347\254\224\350\256\260--markdown\350\257\255\346\263\225.md" "b/\350\256\270\350\211\263\347\254\224\350\256\260/9.4\347\254\254\344\270\200\346\254\241\347\254\224\350\256\260--markdown\350\257\255\346\263\225.md" new file mode 100644 index 0000000..9e71304 --- /dev/null +++ "b/\350\256\270\350\211\263\347\254\224\350\256\260/9.4\347\254\254\344\270\200\346\254\241\347\254\224\350\256\260--markdown\350\257\255\346\263\225.md" @@ -0,0 +1,29 @@ +# Markdown语法 + 1. [注释或文字] (url): url:图片路径:./;可用放图片,如果图片加载不出来可看注释 + 2. '#':一级标题;'##':二级标题 + + eg: + # 我是一级标题 + ## 我是二级标题 + 3. *:'前后一个':斜体;'前后两个':粗体;'前后三个':粗斜体 + + eg:*斜体*; **粗体**;***粗斜体*** + 4. "```JS console.log()":引用/代码段 + + eg: + ```JS + 我是代码段 + ``` + 5.'`dom`':突出重点 + + eg: + 你在`干什么`,来不来`打劫`? + + 6. 有序列表:'1. ';'1) '(后面都要有空格) + 7. 无序列表:'+';'-';'*';无序列表可有三层关系 + + 8. |左对齐| 居中| 右对齐| + '|:-|:-:|-:|' + + eg: + + | 左对齐 | 居中 | 右对齐 | + | :- | :-: | -: | + | 左对齐 | 居中 |右对齐 | + |one|two|three| + \ No newline at end of file -- Gitee