글을 쓸 때마다 C# 코드의 서식과 색상이 내 Google 블로거에 적용되지 않는 일반 검정 글꼴로 나타납니다. 이 문제를 어떻게 수정합니까? 효과적인 블로그 작성 내 블로그에 Visual Studio 2010의 내용을 복사 할 때마다
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# 코드로 강조하고 싶은 :
여기 내 코드의 예입니다.
이 질문은 블로그 콘텐츠를 만드는 것과 관련이 없으므로 주제가 아닌 것으로 보입니다. –
원하는 용어는 "구문 강조"입니다. 거기에 대한 다양한 라이브러리가 있습니다. 그것까지 구글. –
예 블로그 작성에 대해 ... –