003. Open Live Writer 使用简介

0x1 准备工具

Open Live Writer & 汉化插件

Memento.OLW_V1.0.0.5.7z (代码高亮插件)

(我懒得找了,我在哪下载的,我就贴了。)

 

0x2 Open Live Writer 汉化操作说明

1. 下载

2. 安装

3. 在 C:\Users\Administrator\AppData\Local\OpenLiveWriter\app-0.6.2 中替换 OpenLiveWriter.Localization.dll

4. 重启 Open Live Writer

 

0x3 Open Live Writer 中安装代码高亮插件 OLW

1. 下载

2. 在 C:\Users\Administrator\AppData\Local\OpenLiveWriter\app-0.6.2 中新建 Plugins 文件夹

3. 将下载的文件拷贝到该文件夹中

4. 重启 Open Live Writer

image

 

0x4 配置 Open Live Writer

这里就不赘述了,直接贴大佬的教程地址

 

0x5 使用代码插件

image

image

#include <stdio.h>
int main()
{
	printf("xxxxxx");
	return 0;
}

/*
	编程语言: C

	TAB 缩进 == 1
*/
  1 #include <stdio.h>
  2 int main()
  3 {
  4 	printf("xxxxxx");
  5 	return 0;
  6 }
  7 
  8 /*
  9 	编程语言: C
 10 
 11 	TAB 缩进 == 1
 12 	显示行号 == 1
 13 */
  1 #include <stdio.h>
  2 int main()
  3 {
  4 	printf("xxxxxx");
  5 	return 0;
  6 }
  7 
  8 /*
  9 	编程语言: C
 10 
 11 	TAB 缩进 == 1
 12 	显示行号 == 1
 13 	行内代码 == 1
 14 */
  1 #include <stdio.h>
  2 int main()
  3 {
  4 	printf("xxxxxx");
  5 	return 0;
  6 }
  7 
  8 /*
  9 	编程语言: C
 10 
 11 	TAB 缩进 == 1
 12 	显示行号 == 1
 13 	行内代码 == 1
 14 	全部折叠 == 1
 15 */
View Code
  1 #include <stdio.h>
  2 int main()
  3 {
  4 	printf("xxxxxx");
  5 	return 0;
  6 }
  7 
  8 /*
  9 	编程语言: C
 10 
 11 	TAB 缩进 == 1
 12 	显示行号 == 1
 13 	行内代码 == 1
 14 	全部折叠 == 1
 15 	折叠标题 == DemoCode
 16 */
DemoCode
#include <stdio.h>
int main()
{
	printf("xxxxxx");
	return 0;
}

/*
    SyntaxHighlighter(推荐)
	编程语言: C

	TAB 缩进 == 1
	显示行号 == 1
	行内代码 == 1
	全部折叠 == 1
	折叠标题 == DemoCode
*/

 

0x6 总结

代码高亮插件有位大佬一直在关注

 

初来乍到,请多关照。

 

posted @ 2020-02-24 19:28  司马仲达丶  阅读(108)  评论(0)    收藏  举报
返回顶部