1.0.1 • Published 9 years ago

rest-simple-table v1.0.1

Weekly downloads
2
License
MIT
Repository
github
Last release
9 years ago

reStructuredText Simple Table

Generate reStructuredText simple tables.

npm install rest-simple-table
var RST = require('rest-simple-table');

return new RST({
  head: ['Name', 'Role'],
  body: [
    ['Elliot Mitchum', 'Website Developer'],
    ['Duarte Garin', 'Technical Director']
  ]
}).draw();

/**
 * ================== ==================
 * Name               Role              
 * ------------------ ------------------
 * Elliot Mitchum     Website Developer 
 * Duarte Garin       Technical Director
 * ================== ==================
 */