如何用github issues写博客?

首先,issues是支持markdown语法的。
Markdown是一种轻量级且易于使用的语法,用于在GitHub平台上设置所有形式的书写样式。

1.标题加粗的写法:‘## ’、'### '

ex: 这是个二级标题

2.图片的引入:

直接将图片拖入输入框,会自动上传图片

3.插入代码

如果你有内联代码块,请用反引号包装它们:var example = true。如果你有一个更长的代码块,你可以用四个空格缩进:

if(isAwesome){ 
  return true 
} 

GitHub还支持一个叫做代码防护的东西,它允许多行没有缩进:

if(isAwesome){ 
  返回true 
} 

如果你想使用语法高亮,请包含语言:

if(isAwesome){ 
  return true 
} 

4.斜体文字txt加粗文字txt

This text will be italic
This will also be italic

This text will be bold
This will also be bold

You can combine them

5.列表

5.1无序列表

  • Item 1
  • Item 2
    • Item 2a
    • Item 2b
      • Item 2a
      • Item 2b

5.2有序列表

  1. Item 1
  2. Item 2
  3. Item 3
    1. Item 3a
    2. Item 3b
      1. Item 4a
      2. Item 3a
      3. Item 3b

6.链接

http://github.com - automatic!
GitHub

7置灰文字

As Kanye West said:

We're living the future so
the present is our past.

8.附加功能

  • 任务列表- [ ],

  • [ ] 没有勾选

  • [x] 有勾选

9.表格

用|表示竖向的表框,--表示横向的表框

Type Method
Basic boolean, natural, integer, float, character, string, range, date, time, datetime, now
如何用github issues写博客?_第1张图片
image

如何用github issues写博客?_第2张图片
image

你可能感兴趣的:(如何用github issues写博客?)