Skip to content

bugeats/taskpaper-document

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

taskpaper-document

A robust Taskpaper parser, builder, and serializer with no external dependencies.

Written in pure ES5. Works in node > 0.10.x and as a browser bundle.

A project design goal is to always have input perfectly match serialized output, even for fuzzy or non-Taskpaper documents.

Installation

npm install taskpaper-document

Example: Construct a new Document

var TaskpaperDocument = require('taskpaper-document');

var doc = new TaskpaperDocument();

doc.project('A little Project').chain
    .task('A first task')
    .task('A second task');

doc.serialize();

// A little Project:
//     - A first task
//     - A second task

Example: Parse an Existing Document

var fs = require('fs');

var TaskpaperDocument = require('taskpaper-document');

var fileContents = fs.readFileSync('./assets/example.taskpaper');

var doc = TaskpaperDocument.from(fileContents);

doc.serialize();

Contributing

Tests are written in tape. Run tests with:

npm test

All patches must pass the rules found in eslintrc.js. Manually lint via:

npm run lint

About

A robust Taskpaper parser, builder and serializer with no external dependencies.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published