我已經搜索了很長時間,但找不到GFM
中支持task lists
的任何工具。是否有任何支持任務列表的降價工具
我測試過這條線的工具:
- [x] This is a complete item
StackEdit,御阪,標記等,而大多數人聲稱support GFM
他們沒有工作。
有沒有工具支持task lists
? PS:我知道我們可以通過Custom
將此功能添加到StackEdit,但只是預覽不導出。
我已經搜索了很長時間,但找不到GFM
中支持task lists
的任何工具。是否有任何支持任務列表的降價工具
我測試過這條線的工具:
- [x] This is a complete item
StackEdit,御阪,標記等,而大多數人聲稱support GFM
他們沒有工作。
有沒有工具支持task lists
? PS:我知道我們可以通過Custom
將此功能添加到StackEdit,但只是預覽不導出。
我已經得到了解決方案。
使用Python-MarkDown的擴展可以做很多事情。
這裏是鏈接
PS:根據項目崇高的文本插件特別建議
下面是關於解決一些更多的信息的OP指到:
https://github.com/benweet/stackedit/issues/324#issuecomment-82646808
要啓用它,按照下列步驟:
粘貼在JavaScript代碼字段此代碼:
userCustom.onPreviewFinished = function() {
$('#preview-contents dd').each(function() {
$(this).html(function(index,html){
return html.replace(/\[ ?\]/g,'<i class="icon-check-empty"></i>');
});
$(this).html(function(index,html){
return html.replace(/\[X\]/ig,'<i class="icon-check"></i>');
});
});
$('#preview-contents li').each(function() {
$(this).html(function(index,html){
return html.replace(/\[ ?\]/g,'<i class="icon-check-empty"></i>');
});
$(this).html(function(index,html){
return html.replace(/\[X\]/ig,'<i class="icon-check"></i>');
});
});
};
支持任務列表的唯一編輯器是Github自己的編輯器。最讓人遺憾的是你無法將.md文件轉換爲另一種格式,例如.html或.pdf – Adi 2015-03-03 08:53:18
@Adi,哦,不......這些編輯器爲什麼不支持任務列表?執照? – PaleNeutron 2015-03-03 11:18:46