For a full list of all the Markdown syntax, consult the CommonMark help or specification. Headings # This is an H1 ## This is an H2 ###### This is an H6 This is also an H1 ================== This is also an H2 -
> inside a list item.如果要放代码区块的话,该区块就需要缩进两次,也就是 8 个空格或是 2 个制表符: * 一列表项包含一个列表区块: <代码写在这>当然,项目列表很可能会不小心产生,像是下面这样的写法: 1986. What a great season.换句话说,也就是在行首出现数字-句点-空白,要避免这样的状况,你可...
html body img{max-width:100%}html body>p{margin-top:0;margin-bottom:16px;word-wrap:break-word}html body>ul,html body>ol{margin-bottom:16px}html body ul,html body ol{padding-left:2em}html body ul.no-list,html body ol.no-list{padding:0;list-style-type:none}html body ul ul,html ...
This list is ordered. This is a quote. This is a quote inside a quote. This is a list in a quote. Another item in the quote list. Here’s how to include an image with alt text and a title: DigitalOcean Logo We also support some extra syntax for setting the width, height and ...
> inside a list item. A list item with a blockquote:This is a blockquote inside a list item. 列表中放入代码块。如果要在列表中放代码区块的话,该区块就需要缩进两次,也就是 8 个空格或是 2 个制表符: - 呈现相关系数矩阵 ``` pwcorr y x1 x2 x3 ...
5em}#wrapper ol{list-style-position:inside}ul ul,ul ol{margin-bottom:.4em}caption,col,colgroup,table,tbody,td,tfoot,th,thead,tr{border-spacing:0}table{border:1px solid rgba(0,0,0,0.25);border-collapse:collapse;display:table;empty-cells:hide;margin:-1px 0 1.3125em;padding:0;table-...
ListRule(ListItemRule): """ 列表规则 """ type = 'list' inside = False def condition(self, block): return True def action(self, block, handler): if not self.inside and ListItemRule.condition(self, block): handler.start(self.type) self.inside = True elif self.inside and not ListItem...
In order to seeeslint-plugin-markdownwork its magic within Markdown code blocks in your Atom editor, you can go tolinter-eslint's settings and within "List of scopes to run ESLint on...", add the cursor scope "source.gfm".
* A list item with a blockquote: > This is a blockquote > inside a list item. 如果要放程式碼區塊的話,該區塊就需要縮排兩次,也就是8個空白或是兩個tab:* A list item with a code block: <code goes here> 當然,項目清單很可能會不小心產生,像是下面這樣的寫法:...
Putting Code Blocks Inside Lists To put a code block in a list, do something like this: one 1#!/usr/bin/env ruby2puts "hiya"310.times {|n| puts n} two three Some notes: The code is indented by 8 spaces, not the usual 4. ...