-
Notifications
You must be signed in to change notification settings - Fork 482
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ability to set IOContext in which @example
/@repl
blocks are run
#1450
Comments
We can leave this open, as this is about at-example/repl blocks and #942 is doctests. But the solution should be the same basically.
IOContext(
io,
:compact => false,
:limit => false,
:displaysize => (typemax(Int), typemax(Int)),
) I think we should have some keyword arguments to the at-blocks to control them. |
I think I have the opposite problem. I am making a tutorial with DataFrames and it by default prints all the rows of a DataFrame in the |
tkf/DisplayAs.jl#14 is merged and released. |
Seems closely related to #942 but unsure if it's the same problem with the same solution
I'd like to print a long Vector in an
@example
block in the docs (or an@repl
block), e.g.will result in
But i'd like to be able to show the full 26-element output. Is that's possible right now?
(As a workaround i ended up wriitng
foreach(println, f())
)The text was updated successfully, but these errors were encountered: