才知道 Windows Live Writer Source Code plugin for SyntaxHighlighter 更新到2.0了

这是我用 Windows Live Writer 发布的第一篇文章!

在官方网站看到 Windows Live Writer Source Code plugin for SyntaxHighlighter 源码已经到2.0了,只是没有生成 dll 而已,自己用vs生成了2.0版本,最看中的是可以更改代码区的字体和大小了,很棒!

public class HelloBlog {
	private String txtContent = "";
	public void write(String content) {
		this.txtContent = content;
	}

	public String read() {
		return this.txtContent;
	}
}

----------------------------------------------------------------

Windows Live Writer Source Code plugin for SyntaxHighlighter V2

网上资源:http://pan.baidu.com/s/1pJMANeN

官方网站:http://sourcecodeplugin.codeplex.com/

原文地址:https://www.cnblogs.com/myit/p/4122824.html