0
如何編輯文章?如何創建編輯帖子按鈕。 Docpad
<a href="https://github.com/.../blob/master/src/documents/posts/<%[email protected]%>" target="_blank">edit</a>
但這不起作用的file.html.md
如何編輯文章?如何創建編輯帖子按鈕。 Docpad
<a href="https://github.com/.../blob/master/src/documents/posts/<%[email protected]%>" target="_blank">edit</a>
但這不起作用的file.html.md
你可能想改變@document.name
到存儲庫中的文件位於適當的路徑。爲此,我們可以使用fullPath
而不是name
,但我們需要替換DocPad配置的srcPath
,以便只獲取與項目相關的路徑,而不是文件系統上的絕對路徑。
<a href="https://github.com/.../blob/master/<%[email protected](@srcPath,'')%>" target="_blank">edit</a>
現在,@srcPath
實際上並不適用於我們,所以我們需要這樣做。我們可以通過添加定義我們的模板數據srcPath
下面我們docpad configuration file:
events:
extendTemplateData: (opts) ->
opts.templateData.srcPath = @docpad.getConfig().srcPath
讓我知道,如果它的工作原理。如果沒有,請張貼更多關於你的期望,以及你得到什麼結果,我會很樂意幫助進一步。