是否有任何支持任务列表的降价工具

时间:2015-03-03 08:04:18

标签: markdown github-flavored-markdown

我已经搜索了很长时间,但在task lists找不到任何支持GFM的工具。

我在工具中测试了这一行:

- [x] This is a complete item

StackEdit,misaka,标记等等,他们中的大部分都在工作,而大多数人声称support GFM

是否有任何工具支持task lists

PS:我知道我们可以通过Custom将此功能添加到StackEdit,但只是预览不导出。

3 个答案:

答案 0 :(得分:1)

我有解决方案。

使用Python-MarkDown' s Extensions可以做很多事情。

这是链接

Python-Markdown

Third Party Extensions

PS:推荐基于项目的sublime文本插件

答案 1 :(得分:0)

以下是OP提到的解决方案的更多信息:

https://github.com/benweet/stackedit/issues/324#issuecomment-82646808

要启用它,请按以下步骤操作:

  1. StackEdit>设置>扩展
  2. 展开 UserCustom 扩展程序(列表底部)
  3. 将此代码粘贴到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>');
            });
        }); 
    };
    
    1. 点击确定以保存更改

答案 2 :(得分:0)

可在chrome应用程序中运行的StackEdit的版本5和chrome扩展支持清单。

Chrome应用从https://stackedit.io/app#启动