OneNote代码高亮插件(NoteHighLight)

今天朋友推荐了一个onenote插件,用于代码的高亮显示

下载链接:

32位的officehttps://pan.baidu.com/s/1hsu6glA 
64位的office(应该是这个)https://pan.baidu.com/s/1slgG6LJ

安装方法:

打开onenote,双击安装。

效果图 
安装成功后的效果图

那我们现在来尝试一下吧

在onenote中输入下列代码:

 def test():
    i = 0
    while i<5:
        temp = yield i
        print(temp)
        i += 1
t = test()
print(next(t))
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

在onenote中的效果: 
这里写图片描述

点击左下角可更换背景色: 
这里写图片描述

猜你喜欢

转载自blog.csdn.net/zcc1229936385/article/details/80815205