OneNote代码高亮插件(NoteHighLight)

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

下载链接:

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

安装方法:

打开onenote,双击安装。

效果图
OneNote代码高亮插件(NoteHighLight)_第1张图片

那我们现在来尝试一下吧

在onenote中输入下列代码:

 def test():
    i = 0
    while i<5:
        temp = yield i
        print(temp)
        i += 1
t = test()
print(next(t))

在onenote中的效果:
OneNote代码高亮插件(NoteHighLight)_第2张图片

点击左下角可更换背景色:
OneNote代码高亮插件(NoteHighLight)_第3张图片

你可能感兴趣的:(一些杂七杂八)