Skip to content

This script converts JSON exports from Trello to Markdown.

Notifications You must be signed in to change notification settings

IdeaEcho/trello-to-markdown

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

trello-to-markdown

This script converts JSON exports from Trello to Markdown.

团队中工作内容记录在trello每个任务卡片的活动里,而周报用的腾讯文档,需要把trello的每条记录copy到文档里,比较费时,也容易遗漏出错。所以写了这个小工具,避免重复的工作。把节省下来的时间,用在总结和反思。

备注:由于用了正则表达式的后行断言,node.js版本至少要8.10.0。

Getting started

1.安装依赖

npm install

2.点击 https://trello.com/app-key ,获取 keytoken

3.在 config.js 配置 keytoken看板名称成员username

//Replace 'your_key' with your key
module.exports.key = '';

//Replace 'your_token' with your application's token
module.exports.token = '';

//Put all of the desired boards' name into this array
module.exports.boards = ['boardName1', 'boardName2'];

module.exports.teamUsername = ['username1','username2']

4.npm run example

Todolist

  • 将单个成员的本周评论数据转为markdown
  • 本周任务标题加总用时
  • 本周任务标题加计数
  • 根据username获取memberId
  • 根据看板名称获取看板ID
  • 汇总小组周评论

License

MIT

About

This script converts JSON exports from Trello to Markdown.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published