Skip to content

Commit

Permalink
πŸ“ž Fix #239
Browse files Browse the repository at this point in the history
  • Loading branch information
fonsp committed Aug 30, 2020
1 parent f7ec03d commit 7be3b55
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,12 +111,13 @@ Pluto.jl is built by gluing together open source software:
- `CodeMirror` - [license](https://github.com/codemirror/CodeMirror/blob/master/LICENSE)
- `HTTP.jl` - [license](https://github.com/JuliaWeb/HTTP.jl/blob/master/LICENSE.md)
- `MsgPack.jl` - [license](https://github.com/JuliaIO/MsgPack.jl)
- `msgpack-lite` - [license](https://github.com/kawanet/msgpack-lite/blob/master/LICENSE)
- `observablehq/stdlib` - [license](https://github.com/observablehq/stdlib/blob/master/LICENSE)
- `preact` - [license](https://github.com/preactjs/preact/blob/master/LICENSE)
- `developit/htm` - [license](https://github.com/developit/htm/blob/master/LICENSE)
- `MathJax` - [license](https://github.com/mathjax/MathJax-src/blob/master/LICENSE)

Your notebook files are _yours_, you do not need to credit. Have fun!
Your notebook files are _yours_, you do not need to credit us. Have fun!

## Note

Expand Down
4 changes: 2 additions & 2 deletions src/runner/PlutoRunner.jl
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ function html(io::IO, x::LaTeX)
end

"The `IOContext` used for converting arbitrary objects to pretty strings."
iocontext = IOContext(stdout, :color => false, :compact => false, :limit => true, :displaysize => (18, 120))
iocontext = IOContext(stdout, :color => false, :compact => false, :limit => true, :displaysize => (18, 88))
iocontext_compact = IOContext(iocontext, :compact => true)

const imagemimes = [MIME"image/svg+xml"(), MIME"image/png"(), MIME"image/jpg"(), MIME"image/jpeg"(), MIME"image/bmp"(), MIME"image/gif"()]
Expand Down Expand Up @@ -530,7 +530,7 @@ function binding_from(x::Expr, workspace::Module=current_module)
if x.head == :macrocall
Docs.Binding(workspace, x.args[1])
elseif x.head == :.
Docs.Binding(Core.eval(workspace, x.args[1]), x.args[2])
Docs.Binding(Core.eval(workspace, x.args[1]), x.args[2].value)
else
error("Invalid @var syntax `$x`.")
end
Expand Down

1 comment on commit 7be3b55

@fonsp
Copy link
Owner Author

@fonsp fonsp commented on 7be3b55 Aug 30, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.