markdown風の文字列からカンバンやガントチャートを生成するための仕様集(草案)
- DBに格納するより、単純にテキストにしたほうがポータビリティがある
- その辺の独自操作の多いガントチャートエディタより、一括置換やコピペのできる普通のテキストエディタの方がよさそう
- markdown中にcodeとして埋め込んでレンダリング&印刷とかやりたい
- いざとなれば客にはメールでテキストのまま送れる
| { | |
| "database": { | |
| "rules": "database-rules.json" | |
| }, | |
| "storage": { | |
| "rules": "storage.rules" | |
| }, | |
| "hosting": { | |
| "public": "./", | |
| "ignore": [ |
| npm install -D ts-loader typescript@beta webpack | |
| //"watch": "webpack --watch" |
| { | |
| "typescript.tsdk": "node_modules/typescript/lib" | |
| } |
| filters: { | |
| formatDate: function (v) { | |
| return v.replace(/T|Z/g, ' ').replace(/\.[0-9][0-9][0-9]/, "") | |
| } | |
| } |
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Sanitize Sample</title> | |
| </head> | |
| <body> | |
| <main> | |
| <h1>Sanitize Sample</h1> | |
| <ul> |
| <!-- | |
| http = require('http'), | |
| fs = require('fs'), | |
| qs = require('querystring'); | |
| http.createServer(function (req, res) { | |
| var someFile = "index.html"; | |
| if (req.method === 'POST') { | |
| var body = ''; |
シーケンス図とかフローチャートをしごとで描画することになった場合、 テキストから生成できたら楽なので、それ系のツールまとめ