在以前使用word寫筆記時,通過設定各級標題格式和「編號」,可以非常方便的在文件裡新增和刪除自動排序的各級標題。
但是後來我用typora軟體來寫markdown格式的筆記時,發現此軟體預設是沒有此功能可設定的。後來通過網上查詢,發現需要新增乙個字尾名為css的程式檔案,放到typora軟體指定的路徑下即可。
具體操作方法是:開啟typora軟體,開啟檔案 - 偏好設定 - 外觀 - 開啟主題資料夾–將base.user.css檔案複製到此路徑下即可。
新增之後,重啟typora軟體,選中需要作為標題的文字段落,通過按快捷鍵ctrl+數字1,2,3,4,5,6。可以分別實現新增1級-6級標題。
/** initialize css counter */
#write, .sidebar-content,.md-toc-content
#write h1, .outline-h1, .md-toc-item.md-toc-h1
#write h2, .outline-h2, .md-toc-item.md-toc-h2
#write h3, .outline-h3, .md-toc-item.md-toc-h3
#write h4, .outline-h4, .md-toc-item.md-toc-h4
#write h5, .outline-h5, .md-toc-item.md-toc-h5
/** put counter result into headings */
#write h1:before,
h1.md-focus.md-heading:before,
.outline-h1>
.outline-item>
.outline-label:before,
.md-toc-item.md-toc-h1>
.md-toc-inner:before
#write h2:before,
h2.md-focus.md-heading:before,
.outline-h2>
.outline-item>
.outline-label:before,
.md-toc-item.md-toc-h2>
.md-toc-inner:before
#write h3:before,
h3.md-focus.md-heading:before,
.outline-h3>
.outline-item>
.outline-label:before,
.md-toc-item.md-toc-h3>
.md-toc-inner:before
#write h4:before,
h4.md-focus.md-heading:before,
.outline-h4>
.outline-item>
.outline-label:before,
.md-toc-item.md-toc-h4>
.md-toc-inner:before
#write h5:before,
h5.md-focus.md-heading:before,
.outline-h5>
.outline-item>
.outline-label:before,
.md-toc-item.md-toc-h5>
.md-toc-inner:before
#write h6:before,
h6.md-focus.md-heading:before,
.outline-h6>
.outline-item>
.outline-label:before,
.md-toc-item.md-toc-h6>
.md-toc-inner:before
/** override the default style for focused headings */
#write>h3.md-focus:before,
#write>h4.md-focus:before,
#write>h5.md-focus:before,
#write>h6.md-focus:before,
h3.md-focus:before,
h4.md-focus:before,
h5.md-focus:before,
h6.md-focus:before
Typora設定標題自動新增序號
建立乙個空檔案,命名為base.user.css。裡面貼上如下內容儲存後重啟typora,輸入標題時會自動出現序號。initialize css counter write h1 h2 h3 h4 h5 put counter result into headings write h1 before...
Idea中新增Typora第三方軟體編輯md檔案
由於網上的啟用碼大都不能使用,所以後來突發奇想,尋思能不能在idea裡使用第三方軟體開啟,因為本地是有typora軟體的,於是就有了這篇文章。0 本地電腦已經安裝typora軟體,關於typora軟體的安裝這裡不再贅述。1 首先需要先進入到idea設定介面,路徑如下 settings tools e...
如何刪除 容器裡的軟體(徹底)
命令 root spider1 bin rpm qa grep python xargs rpm ev allmatches nodeps 強制刪除已安裝程式及其關聯 root spider1 bin whereis python xargs rm frv 刪除所有殘餘檔案 xargs,允許你對輸出...