Skip to content

Commit 0b24136

Browse files
authored
Merge pull request #159 from rdeits/patch-1
Fix "assorted asides" list formatting in dev guide
2 parents 71ca5d3 + e0b19ba commit 0b24136

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

doc/dev guide.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ Interact Does the following to ensure `Signal` values are displayed and updated
3535
1. Sends a message to the frontend using `IJulia.send_comm` to tell it to display the widget
3636

3737
Assorted Asides:
38+
3839
1. IJulia/src/inline.jl#L9-L19 evals [`display(d::InlineDisplay, ::MIME{Symbol($mime)}, x)`](https://github.com/JuliaLang/IJulia.jl/src/inline.jl#L9-L19) for a number of mimetypes to create display methods for each of those mimetypes (html, image, ..., text) `display(d::InlineDisplay, ::MIME{Symbol($mime)}, x)`, but these only get called when a mimetype is explicitly provided, i.e. when `display(mimetype, x)` is called
3940
1. mimetype (`::MIME`) objects can be created with `MIME(mimestring)`, e.g. `MIME("text/html")`, `MIME("image/png")`, `MIME("text/plain")` etc.
4041
1. Jupyter messages have various msg types, use `IJulia.set_verbose(true)` in a notebook to display all the messages in the shell where jupyter runs. Alternately you can inspect messages in your browser's dev console, network tab, look for `channel?` messages and click the frames tab. The "comm_msg" message type is the main one used for Interact widgets and signals.

0 commit comments

Comments
 (0)