A jldoctest as a continuation of a previous jldoctest?

Is it possible to use a jldoctest block as a continuation of a previous one? Something like:

Create data with:
```jldoctest
julia> using MyPkg

julia> my_data = MyPkg.data()
Created data!
```~
And now, run function `foo` with:
```jldoctest
julia> results = foo(my_data)
Nice results!
```~