使用Github Gist中的Markdown语法在表中插入带突出显示的代码内容

时间:2014-06-16 10:31:01

标签: github markdown gist

如何使用Github Gist中的Markdown语法在表格中插入突出显示的代码内容。这是我想要获得的最终结果:

enter image description here

详细问题:

这是创建包含简单内容的表的基本markdown语法:

PHPStructuredData | Plugin | Microdata | RDFa Lite 1.1
--- | --- | --- | ---
php code here | php code here | html code here | html code here

结果将是: enter image description here

问题是当您需要在表格中插入突出显示的代码内容时:

PHPStructuredData | Plugin | Microdata | RDFa Lite 1.1
--- | --- | --- | ---
```php
<?php
$sd->property('url')->display();
?>
``` | php code here | html code here | html code here

非想要的结果将是: enter image description here

1 个答案:

答案 0 :(得分:0)

这可能是一个解决方案Github markdown, syntax highlight of code blocks in the table cell,但正如您所看到的,语法突出显示无法按预期工作。