在Wordpress.com中显示C#代码

时间:2010-02-27 21:29:08

标签: c# wordpress widget wordpress.com

我已经研究了几个小时,我有点沮丧。也许我只是缺少一些东西,因为我不熟悉博客。

托管我自己的博客,我只是使用WordPress.com。 我想要包含c#代码的片段,让它们看起来像在Visual Studio中,或者至少使它们看起来很好,当然还有行号和颜色。 我见过的解决方案似乎都假设您正在托管自己的博客。 我无法弄清楚如何安装插件。

是否有一个小部件可以使代码片段看起来不错,或者其他一些我可以轻松使用的解决方案?

谢谢

编辑:Sarfraz概述了解决我问题的一种方法(谢谢!),我已经尝试了但是我遇到了一个问题,即它没有为我的大部分代码着色(较新的关键字,如 var 来自 选择等)。是否有解决方法或是否有其他解决方案?

4 个答案:

答案 0 :(得分:26)

只需在 html 模式下修改您的aricles,并将代码包含在这些代码中。

[sourcecode language="css"]
[/sourcecode]

示例:

[sourcecode language="javascript"]
 // javascript hello world program
 alert('Hello, World !!');
[/sourcecode]

注意:您需要为language属性指定正确的语言标识符,如上所示。

<强> More Information Here :)

答案 1 :(得分:7)

[sourcecode]标签通常适用于C#,但对我来说,当我发布XAML代码时,它常常会中断。

相反,我使用this page来格式化我的代码。结果看起来不错(您可以在my blog上看到它),但它需要“自定义CSS”选项(每年15美元)。


编辑:实际上[sourcecode]标签工作正常,我现在在我的所有帖子中都使用它

答案 2 :(得分:5)

    [code language="csharp"]
       //Your code here
    [/code]

答案 3 :(得分:4)

看起来已经更新了,现在你可以使用

[code language="[the lang you are posting]"]
your code here
[/code]

注意:您可以将语言缩写为lang

[code lang="[the lang you are posting]"]
your code here
[/code]

here is the list of supported languages