Experimental support for gantt diagrams

This commit is contained in:
knsv
2015-02-20 19:06:15 +01:00
parent 1b016bd412
commit 2877501ff5
11 changed files with 8742 additions and 160 deletions

View File

@@ -27,6 +27,11 @@ module.exports.detectType = function(text,a){
return "info";
}
if(text.match(/^\s*gantt/)) {
//console.log('Detected info syntax');
return "gantt";
}
return "graph";
};