Brian E. Granger

Results 391 comments of Brian E. Granger

We discussed this at the in person team meeting last week and charted out the following path for this issue: * Begin by documenting and testing the precise details of...

Here is where we actually do the rendering: https://github.com/jupyter/notebook/blob/master/notebook/static/notebook/js/textcell.js#L379

A good starting point for this would be to write some python code that parses this file: https://github.com/jgm/CommonMark/blob/master/spec.txt And extracts the source of all the examples and puts them into...

Here is the GitHub version of `spec.txt`: https://github.com/github/cmark/blob/master/test/spec.txt

You can generate JSON data for all the examples using: `python3 test/spec_tests.py --dump-tests > spec.json`

I think the question is a more basic one about the nbformat API. To insert a cell you would do: `x.cells.append(cell)` Here are some examples of this: http://programtalk.com/python-examples/nbformat.v4.new_markdown_cell/ On Fri,...

M - sorry I wasn't clear. Ashutosh began working at Cal Poly this week and is getting his bearings around the jupyter codebase and python. I had asked him to...

Ahh, got it! I was thinking that we would use nbformat itself as that repo, but more than willing to create a new one for us to work with. But...

Hi all! Ashutosh, glad you made progress! I just create this repo and added both of you as collaborators: https://github.com/jupyter/jupyter_markdown Ashutosh, can you submit a Pull Request to this repo...

Thanks this helps. I can imagine two usage cases that you are getting at here: 1. An operator wants to omit individual properties that are sensitive. 2. An operator wants...