Creates a new LanguagePlugin
instance which delegates binding and evaluation
to a specified language service. You can pass the returned LanguagePlugin
to
the createNotebook
function to get a notebook supporting this language.
Creates a Wrattler notebook that loads notebooks automatically by requesting the index.md
URL from the domain where it is hosted (or another.md
when the current URl contains ?another
in the query string).
Given initial Markdown source code and a dictionary with language plugins, create a new instance of Wrattler and render it in a given HTML document element.
HTML document element to be used for rendering the notebook.
Initial source code for the notebook in Markdown.
Language plugins to be used, typically the result of getDefaultLanguages
Returns default language plugins for Markdown, JavaScript, R, Python and Racket
Generated using TypeDoc
Main entry point that can be used for creating new Wrattler notebook instances. You can use
getDefaultLanguages
to get default language plugins implemented in core Wrattler andcreateNotebook
to create a new notebook instance.