Markdown 表未显示在 github .md 页面上

And*_*rey 3 markdown github github-flavored-markdown

我有一个使用表格布局的降价页面,它在 VS Code 降价预览插件中正确显示为表格,但是当我将它签入 GitHub 时,它没有正确显示表格,而是显示表格降价。这是页面:https : //github.com/path-foundation/path-protocol/blob/docs/docs/api.md

降价:

Inputs
| type|name |description |
|----|---|---|
| *address* | _user | address of certificate owner |
| *bytes32* | _hash | sha256 hash of the certificate text |
Run Code Online (Sandbox Code Playgroud)

这在github中查看时显示在页面上:

Inputs | type | name | description | | ---- | --- | --- | | address | _user | address of certificate owner | | bytes32 | _hash | sha256 hash of the certificate text |
Run Code Online (Sandbox Code Playgroud)

任何想法我做错了什么?

juz*_*aai 6

在表格之前插入一个空行(在“输入”之后):

Inputs

| type|name |description |
|----|---|---|
| *address* | _user | address of certificate owner |
| *bytes32* | _hash | sha256 hash of the certificate text |
Run Code Online (Sandbox Code Playgroud)

它将正确呈现:

在此处输入图片说明