Open
Description
I'm trying to attempt these two things with no success fo far:
-
Nested sections:
i.e.
[[section]]
| # title
| [[nestedSection]] -
Properties passed to the section:
i.e.
[[section bgColor="blue" width="1024"]]
which would result in:
section: {
classes: 'section',
bgColor: 'blue',
width: '1024'
}
This approach would allow more flexibility with section, i.e. there would be just one section instead of creating:
sectionBgBlue: {
classes: 'sectionBgBlue'
}.
sectionWidthDesktop: {
classes: 'sectionWidthDesktop'
}
Is any of those possible? Thanks in advance!