Open bertfrees opened 7 years ago
When a flow(x) is combined with a flow(y, volume) in the content property of a volume area, they can end up in a single dynamic-sequence, which results in flow(x) not being rendered if flow(y, volume) evaluates to nothing.
flow(x)
flow(y, volume)
content
dynamic-sequence
In some cases this is desired, in some cases not.
An example of where this is desired is in nlb-default.scss:
@volume { @end { content: flow(endnotes-title) flow(endnotes, volume); } }
When a
flow(x)
is combined with aflow(y, volume)
in thecontent
property of a volume area, they can end up in a singledynamic-sequence
, which results inflow(x)
not being rendered ifflow(y, volume)
evaluates to nothing.In some cases this is desired, in some cases not.
An example of where this is desired is in nlb-default.scss: