如何使用Github Gist中的Markdown语法在表格中插入突出显示的代码内容。这是我想要获得的最终结果:
这是创建包含简单内容的表的基本markdown语法:
PHPStructuredData | Plugin | Microdata | RDFa Lite 1.1
--- | --- | --- | ---
php code here | php code here | html code here | html code here
结果将是:
问题是当您需要在表格中插入突出显示的代码内容时:
PHPStructuredData | Plugin | Microdata | RDFa Lite 1.1
--- | --- | --- | ---
```php
<?php
$sd->property('url')->display();
?>
``` | php code here | html code here | html code here
非想要的结果将是:
答案 0 :(得分:0)
这可能是一个解决方案Github markdown, syntax highlight of code blocks in the table cell,但正如您所看到的,语法突出显示无法按预期工作。