我google了很长时间,但找不到任何支持task lists
.GFM
我在工具中测试了这一行:
- [x] This is a complete item
StackEdit、misaka、marked 等等,没有一个有效,而他们中的大多数声称support GFM
.
有什么工具支持task lists
吗?
PS:我知道我们可以将这个功能添加到 StackEdit 中,Custom
但只是预览而不是导出。
我google了很长时间,但找不到任何支持task lists
.GFM
我在工具中测试了这一行:
- [x] This is a complete item
StackEdit、misaka、marked 等等,没有一个有效,而他们中的大多数声称support GFM
.
有什么工具支持task lists
吗?
PS:我知道我们可以将这个功能添加到 StackEdit 中,Custom
但只是预览而不是导出。
我有解决办法。
使用 Python-MarkDown 的 Extensions 可以做很多事情。
链接在这里
PS:推荐一个基于项目的sublime text插件
以下是有关 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>');
});
});
};
在 chrome 应用程序中运行的 StackEdit 版本 5,以及 chrome 扩展支持清单。
chrome 应用程序从https://stackedit.io/app#启动