We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Right now when we parse notebooks, we throw away any notebook-level metadata that is not string/int/float:
https://github.com/ExecutableBookProject/MyST-NB/blob/master/myst_nb/parser.py#L173
However, this throws away the notebook kernel information, which may be useful for interactive tools like Thebelab. Here's the structure it has:
"metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" } }
Can we either:
name
language
int/float/string
The text was updated successfully, but these errors were encountered:
Yeh just json serialize
Sorry, something went wrong.
This is fixed in #147
No branches or pull requests
Right now when we parse notebooks, we throw away any notebook-level metadata that is not string/int/float:
https://github.com/ExecutableBookProject/MyST-NB/blob/master/myst_nb/parser.py#L173
However, this throws away the notebook kernel information, which may be useful for interactive tools like Thebelab. Here's the structure it has:
Can we either:
name
, but perhapslanguage
as well.int/float/string
values as strings in the page metadata? (that's what we currently do for manually-specified Front Matter in myst-markdown)The text was updated successfully, but these errors were encountered: