@
cxbig @
morefreeze 排版编辑用 autohotkey 增强下吧,虽很蛋疼,聊胜于无:
```
#IfWinActive ahk_class (ENSingleNoteView|ENMainFrame)
{
;en 的搜索不支持特殊字符,特快捷输入这些国际字母,以变相支持特殊字符
` & 1::SendInput, {U+0069}{U+006E}{U+0074}{U+0069}{U+0074}{U+006C}{U+0065}{U+003A}
` & 2::SendInput, Δ{Space}
` & 3::SendInput, Ø{Space}
` & d::SendInput, ^; ;快速插入日期时间
Tab & q::SendInput, {U+005B}{U+005D}
Tab & w::SendInput, √
Tab & e::SendInput, ×
$`::SendInput, ``
+`::SendInput, ~{Shift}
~^`::SendInput, ^`
F3::SendInput, ^!t ;批量打标签
;复制到当前笔记本
F5::
{
SendInput, {AppsKey}c
Sleep, 200
SendInput, {Enter}
return
}
;导出笔记
F6::
{
SendInput, {AppsKey}x{Enter}
Sleep, 200
SendInput, {Enter}
return
}
;简化格式
F7::
{
SendInput, !o
SendInput, SS
SendInput, {Enter}
return
}
;加括号
Tab & a::
{
Send, ^x
Send, (%Clipboard%)
return
}
;字体红色
#1::evernoteEditText("<div style='color: #F02E37;'><b>", "</b></div>")
;字体绿色
#4::evernoteEditText("<div style='color: #0F820F;'><b>", "</b></div>")
;字体灰色
#3::evernoteEditText("<div style='color: #D6D6D6;'>", "</div>")
;字体蓝色
#2::evernoteEditText("<div style='color: #3740E6;'><b>", "</b></div>")
;背景色黄色
!1::evernoteEdit("<div style='background: #FFFAA5;'>", "</div>")
;背景色蓝色
!2::evernoteEdit("<div style='background: #ADD8E6;'>", "</div>")
;背景色灰色
!3::evernoteEdit("<div style='background: #D3D3D3;'>", "</div>")
;背景色绿色
!4::evernoteEdit("<div style='background: #90EE90;'>", "</div>")
;方框环绕
!f::evernoteEdit("<div style='margin-top: 5px; margin-bottom: 9px; word-wrap: break-word; padding: 8.5px; border-top-left-radius: 4px; border-top-right-radius: 4px; border-bottom-right-radius: 4px; border-bottom-left-radius: 4px; background-color: rgb(245, 245, 245); border: 1px solid rgba(0, 0, 0, 0.148438)'>", "</div></br>")
;超级标题
!s::evernoteEditText("<div style='margin:1px 0px; color:rgb(255, 255, 255); background-color:#8BAAD0; border-top-left-radius:5px; border-top-right-radius:5px; border-bottom-right-radius:5px; border-bottom-left-radius:5px; text-align:center;'><b>", "</b></div></br>")
;贯穿线
^+=::evernoteInsertHTML("<div style='margin: 3px 0px; border-top-width: 2px; border-top-style: solid; border-top-color: rgb(116, 98, 67); font-size: 3px'> </div></br>")
;底色标题
!t::evernoteEditText("<div><div style='padding:0px 5px; margin:3px 0px; display:inline-block; color:rgb(255, 255, 255); text-align:center; border-top-left-radius:5px; border-top-right-radius:5px; border-bottom-right-radius:5px; border-bottom-left-radius:5px; background-color:#E2A55C;'>", "<br/></div><br/></div><br/>")
;引用
!y::evernoteEdit("<div style='margin:0.8em 0px; line-height:1.5em; color:rgb(170, 170, 170); border-left-width:5px; border-left-style:solid; border-left-color:rgb(127, 192, 66); padding-left:1.5em; '>", "</div>")
}
```