Extension weekplan
A table that is suitable for creating weekplans.
The css styling automatically highlights the cells that are used to ensure good readability.
| Python type | Table |
| type | table/weekplan |
| Language | YAML |
| Required fields |
| Optional fields | file, class, caption, format |
| Post-Yaml Section | required |
Example 1
| Time | Mon | Tue | Wed | Thu | Fri |
|---|---|---|---|---|---|
| 08:15 | Team Activities | ||||
| 09:15 | RATs | ||||
| 10:15 | |||||
| 11:15 | |||||
| 12:15 | |||||
| 13:15 | Summary | ||||
| 14:15 | |||||
| 15:15 | |||||
| 16:15 |
Source Code
---
type: table/weekplan
format: html
---
{|
! Time
! Mon
! Tue
! Wed
! Thu
! Fri
|-
| 08:15
|
| rowspan="4" | Team Activities
|
|
|
|-
| 09:15
| RATs
|
|
|
|-
| 10:15
|
|
|
|
|-
| 11:15
|
|
|
|
|-
| 12:15
|
|
|
|
|
|-
| 13:15
|
|
|
|
| Summary
|-
| 14:15
|
|
|
|
|
|-
| 15:15
|
|
|
|
|
|-
| 16:15
|
|
|
|
|
|}
---
type: table/weekplan
format: html
---
{|
! Time
! Mon
! Tue
! Wed
! Thu
! Fri
|-
| 08:15
|
| rowspan="4" | Team Activities
|
|
|
|-
| 09:15
| RATs
|
|
|
|-
| 10:15
|
|
|
|
|-
| 11:15
|
|
|
|
|-
| 12:15
|
|
|
|
|
|-
| 13:15
|
|
|
|
| Summary
|-
| 14:15
|
|
|
|
|
|-
| 15:15
|
|
|
|
|
|-
| 16:15
|
|
|
|
|
|}