在Typero中修改字型的顏色
阿新 • • 發佈:2020-10-29
在Typero中修改字型的顏色
參考連結
https://blog.csdn.net/superit401/article/details/106344453/
- 安裝AutoHotKey https://autohotkey.com/download/ahk-install.exe
- 開啟記事本
; Typora ; 快捷增加字型顏色 ; SendInput {Text} 解決中文輸入法問題 #IfWinActive ahk_exe Typora.exe { ; Ctrl+Alt+O 橙色 ^!o::addFontColor("orange") ; Ctrl+Alt+R 紅色 ^!r::addFontColor("red") ; Ctrl+Alt+B 淺藍色 ^!b::addFontColor("cornflowerblue") } ; 快捷增加字型顏色 addFontColor(color){ clipboard := "" ; 清空剪下板 Send {ctrl down}c{ctrl up} ; 複製 SendInput {TEXT}<font color='%color%'> SendInput {ctrl down}v{ctrl up} ; 貼上 If(clipboard = ""){ SendInput {TEXT}</font> ; Typora 在這不會自動補充 }else{ SendInput {TEXT}</ ; Typora中自動補全標籤 } }
- 將檔案儲存為ahk字尾檔案
- 雙擊執行
- 在Typero軟體裡可以使用快捷鍵, Ctrl+Alt+O新增橙色, Ctrl+Alt+R新增紅色, Ctrl+\取消樣式
- 可以參考模板自定義顏色快捷鍵