Marc Wouts

Results 502 comments of Marc Wouts

@zippeurfou you could pipe an ipynb file generated by Jupytext into `jupyter nbconvert` like this: ~~~ echo "1+1" | jupytext --from py --to ipynb | jupyter nbconvert --stdin --to markdown...

Thanks for considering this! Quick question re #1, I see that the [interactive script mode](https://github.com/mwouts/notebooks_in_vscode_and_pycharm_jan_2020/blob/master/README.md#interactive-scripts-in-visual-studio-code) (also on [TDS](https://towardsdatascience.com/jupyter-notebooks-in-the-ide-visual-studio-code-versus-pycharm-5e72218eb3e8), search for _interactive scripts_ in that page), which has been around for...

Hi, I am afraid I cannot reproduce the issue. Can you share the csv file? Also, what version of `itables` are you using? ``` from itables import init_notebook_mode, show from...

Closing as I cannot reproduce the issue. Feel free to open another one with a MRE if the problem persists.

Hi @mahendrapaipuri , sorry it took me so long to come back to this PR (BTW I have updated the version of `pandoc` used in tests). I think my concern...

Thanks @mahendrapaipuri ! Yes much better to take the time to think about this. I am not concerned about the tests being slow (although I like this PR that makes...

At this stage I get the following HTML: ``` from itables import to_html_datatable import pandas as pd print(to_html_datatable(pd.DataFrame({'i':[-9007199254740992]}))) ``` ``` .itables table td { text-overflow: ellipsis; overflow: hidden; } .itables...

Thanks François! Oh I see! That reminds me of a previous attempt to use `datatables==1.13.1` for https://github.com/mwouts/itables/issues/121, see also this branch: https://github.com/mwouts/itables/compare/main...datatables_1.13.1 At the moment this is a bit too...

Great question. Thank you for asking. I don't find much references on this, only https://stackoverflow.com/questions/35864810/mathjax-render-only-on-first-page-of-the-data-table. As this requires another JS library this might be a bit difficult to get it...