Skip to content
This repository has been archived by the owner on Dec 15, 2022. It is now read-only.
/ task-lists-js Public archive
forked from gjtorikian/task-lists-js

An implementation of the basic task list logic (in CoffeeScript)

License

Notifications You must be signed in to change notification settings

atom/task-lists-js

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Atom and all repositories under Atom will be archived on December 15, 2022. Learn more in our official announcement

Tasks Lists (JS)

Turns a GFM style task list into a series of checkboxes.

Installation

npm install task-lists

Usage

var roaster = require("roaster");
var taskLists = require("../src/index");
var fs = require("fs");

var options = {};
options.isFile = true;

roaster("./markdown.md", options, function(err, contents) {
	contents = taskLists(contents);
    fs.writeFileSync("./markdown.html", contents, "utf8");
});

About

An implementation of the basic task list logic (in CoffeeScript)

Resources

License

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • HTML 54.2%
  • CoffeeScript 29.3%
  • JavaScript 11.9%
  • Shell 4.6%