#22 Basic Pie Chart

This commit is contained in:
Ashish Jain
2019-09-11 21:20:28 +02:00
parent 78cae3dce7
commit 42fc23cff2
42 changed files with 2571 additions and 3602 deletions

View File

@@ -40,6 +40,9 @@ export const detectType = function (text) {
if (text.match(/^\s*info/)) {
return 'info'
}
if (text.match(/^\s*pie/)) {
return 'pie'
}
return 'flowchart'
}