Markdown Github标记-表格单元格中的格式化代码。古怪的行为

Markdown Github标记-表格单元格中的格式化代码。古怪的行为,markdown,code-formatting,github-flavored-markdown,Markdown,Code Formatting,Github Flavored Markdown,我想将标记表单元格中的一些单词标记为code 举例来说: | Verb | Description | Aliases | | --- | --- | --- | | `tag` | return the current state tag | `currentState` |` | `exec`| transact to an output state | `goout` `setOutputState` `gotoOutputState` `nextOutpu

我想将标记表单元格中的一些单词标记为
code

举例来说:


| Verb  | Description | Aliases |
| ---   | ---         | ---     |
| `tag` | return the current state tag | `currentState` |`
| `exec`| transact to an output state | `goout` `setOutputState` `gotoOutputState` `nextOutputState` |
| `next` | transact to an input state | `goto` `setInputState` `gotoInputState` `nextInputState` |
| `say` | send a text message to user | `ask` `prompt` |
| `tts` | send a speech message to user | | 
| `asr` | s the incoming message a speech? | |
| `match` | match a pattern/intent | |
| `take` | save the pattern match info  | |
| `slots` | return the slots of a pattern matched | |
| `setvar` | write a dialog unit variable | |
| `getvar` | read a dialog unit variable | |
| `delvar` | delete a dialog unit variable | |
| `delvars` | delete all dialog unit variables | |
| `chatid` | get the current chat id | |
| `setChat` | set the current chat id | |
| `startTimeout` | start a timeout handler | |
| `stopTimeout` | stop the timout handler | |
| `getCounterTimeout` | how many timeout are run? | |
| `setDefaultTimeoutTime` | set the default timeout in msecs | |
| `isSessionActive` | there is a dialog running for current id? | `isDialogActive` |

我得到了奇怪的格式:一些单词,如
标签
,看起来不像代码。见现场演示:

请参见屏幕截图:


为什么??我哪里错了?

我觉得不错。参考这个Thx,我添加了屏幕截图。很奇怪,不是吗?我看没问题。虽然,由于表格的其他每一行都有灰色背景,因此很难辨别代码跨度的灰色背景的阴影稍有不同。但是,所有代码跨度都被正确地解析为这样。您可以始终使用浏览器的“查看源代码”或“检查”功能,并确认所有代码范围实际上都包装在
标记中。