You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[cols="2*"]
|===
a|
[source,groovy]
----
myTask {
mySources file( 'path/foobar' )
mySources new File( 'path2/foobar' )
mySources 'file3', 'file4'
mySources { "lazy evaluate file name later on" }
}
----
a|
* Allow ability to:
* Use strings and other objects convertible to `File`
* Append lists
* Evaluate as late as possible
* Reset default values
|===
If both columns contain a source block then both are generated.
The text was updated successfully, but these errors were encountered:
Are you sure the source listing isn't just flowing off the screen due to the text size of the itemized list? We could implement the vertical alignment in the reveal.js backend so that the code listing is pushed to the top. We'd need to add the following to a built-in stylesheet:
It looks to me like @mojavelinux is right on with the vertical-alignment issue. I removed a couple items from the list:
== Table[cols="2*"]
|===
a|
[source,groovy]
----
myTask {
mySources file( 'path/foobar' )
mySources new File( 'path2/foobar' )
mySources 'file3', 'file4'
mySources { "lazy evaluate file name later on" }
}
----
a|
* A list item
* Another list item
* A third list item
|===
Which gives this result:
With more list items (as given in the initial issue), I get this:
The following will not generate the source block.
If both columns contain a source block then both are generated.
The text was updated successfully, but these errors were encountered: