mdbook-chart-0.1.2 is not a library.
mdbook-chart
A preprocessor and cli tool for mdbook to show chart use C3.js.
install
1. Use as mdbook preprocessor.
#cat /path/to/your/mdbook/book.toml
#use as mdbook preprocessor
2. edit your markdown file
```chart
{
"data": {
"type": "bar",
"columns": [
["data1", 30, 200, 100, 400, 150, 250],
["data2", 50, 20, 10, 40, 15, 25]
],
"axes": {
"data2": "y2"
}
},
"axis": {
"y2": {
"show": true
}
}
}
```
or
{% chart %}
{
"data": {
"type": "foo",
"columns": [
["data1", 30, 200, 100, 400, 150, 250],
["data2", 50, 20, 10, 40, 15, 25]
],
"axes": {
"data2": "y2"
}
},
"axis": {
"y2": {
"show": true
}
}
}
{% endchart %}
When you run
Or
this will do something to make sure your chart show as you wish.
