Logan

Results 22 comments of Logan

The current version of `nbgrader` (v0.3.1) on pip requires the extensions to be install and activated with `nbgrader extension install` and `nbgrader extension activate`. https://nbgrader.readthedocs.io/en/stable/user_guide/installation.html

It should work fine with using formControlName. Here is a minimal working example (Angular 12) ```typescript export class AppComponent implements OnInit { protected _initialCode = '...'; codeMirrorOptions = { lineNumbers:...

@sho94os how do you mean? This project is not meant to run on its own, it is meant to be enabled as an extension for Jupyter Notebook.

Hmmm that is strange. Can you post the code snippet here please. What happens if you simply run the code cell with the %%nbtutor magic? Does the visualisation just not...

Also if you can run the code cell with `%%nbtutor --debug` and let me know if there is any traceback if will be helpful.

I'll look into this in the morning for you. For some reason the nbtutor debugger is failing and failing back to ipython to run the cell. It could possible be...

Cool, thanks for letting me know. I will try improve this.

At the moment no, it will not be able to work with other kernels. To be honest this is not something I have looked into yet, but it is something...

Relates to https://github.com/lgpage/rxtutor/issues/212

Initially, I tried waiting for CodeMirror to load (within the CodeMirrorComponent) and then call `cm.refresh()` in the `AfterViewInit` hook (as per https://codemirror.net/5/doc/manual.html#refresh). This worked to some degree if I added...