Danijar Hafner

Results 165 comments of Danijar Hafner

Thanks for also taking a look. Yes, let's leave this open. It would be great to bundle a stripped down version of MathJax because I think it can be frustrating...

I thought a bit about exporting into more formats. There will be some formats that HTML can easily be converted to and some that can't. Converting from HTML won't work...

Thanks for your example. What I had in mind is the [visitor pattern](https://en.wikipedia.org/wiki/Visitor_pattern#Python_example), which seems like a better solution to me. What do you think? ```python # The user API...

In addition to LaTeX export, it would make sense to export to Markdown. This might also be easier for users to further convert into other formats downstream.

We can separate topics for the user guide in: - When to use Handout - Typical user - Comparison to alternatives - Specific usage examples - Report for data exploration...

@ugmurthy Please clarify a bit. For a simple text report, there is no need to use Python -- pure Markdown or Google docs are better suited. If you need figures...

To include styles and scripts from a URL: ```python3 doc.add_html('') doc.add_html('') ``` To download and include them for offline viewing: ```python3 import wget # pip3 install --user wget wget.download(style_url, directory...

To update the handout on script save (#36): ```sh while inotifywait -e close_write script.py; do python3 script.py; done ```

I've started a more detailed comparison, to include in the README eventually: | Tool | Source code | Execution engine | Maintains state | Live updates | Developer interface |...