blob: 20f3019aa3b4c78e71499d3751abfd1de4cc41e4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
---
# table name (required)
name: "Charging Cost, Tesla Supercharger"
# table columns (required)
cols:
- id: "description"
name: "Description"
tip: "Amount of charge."
- id: "energy"
name: "Energy"
tip: "Amount of energy gained, in kilowatt-hours (kWh)."
align: "right"
- id: "cost"
name: "Cost"
tip: "Total cost of charge."
align: "right"
# table rows (required)
rows:
- description: "50 miles of range"
energy: "14 kWh"
cost: "$3.50"
- description: "90% SoC (270 miles)"
energy: "65.7 kWh"
cost: "$16.88"
- description: "100% SoC (310 miles)"
energy: "75 kWh"
cost: "$18.75"
|