有效的博客写作

时间:2014-11-12 09:23:23

标签: blogger blogspot

每当我将Visual Studio 2010的内容复制到我的博客时,它就会显示为普通的黑色字体,其中C#代码的格式和颜色不适用于我的Google博主。我该如何解决这个问题?

以下是我的代码示例:

using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;

namespace BookStore.Models
{
    public class Book
    {
        [Key]
        public int Id { get; set; }
        [Required]
        [MaxLength(30)]
        public string Title { get; set; }
        public string Authers { get; set; }

        [Column("Year")]
        [Display(Name = "Publish Year")]
        public string publishYear { get; set; }

        [Column("Price")]
        [Display(Name = "Price")]
        public decimal BasePrice { get; set; }
    }
} 

我希望将其突出显示为C#代码。

2 个答案:

答案 0 :(得分:0)

程序代码的颜色称为Syntax Highlighting,默认情况下不是Blogger支持的内容 - 请尝试使用searching突出显示Blogger的插件/插件,并查看你找到了。

我们使用Markdownhighlight.js的组合来处理我们的代码文档。我不确定这是否可以与Blogger一起使用,但如果您在其他地方托管您的博客,它可能是一个选项。

答案 1 :(得分:0)

我在另一个平台上尝试了以下内容,但没有使用Blogger。我不确定它是否符合你的目的。但绝对值得一试:

  1. 从Visual Studio复制并粘贴到Word文档中。
  2. 从Word文档复制并粘贴到博客的富文本编辑字段中。
  3. 直接从Visual Studio复制并粘贴到富文本编辑字段将不会保留语法突出显示。我不知道为什么。