Skip to content
New issue

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

adding codemirror config page #174

Merged
merged 2 commits into from
Oct 30, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
69 changes: 69 additions & 0 deletions docs/howto/cm_customize.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
======================
Customizing CodeMirror
======================

CodeMirror is the tool used to convert your code cells into editable cells.
It has a number of configuration options, such as theming and syntax highlighting.
You can edit all of these attributes in a cell with the following thebelab configuration:

.. code:: html

<!-- Configure and load Thebe !-->
<script type="text/x-thebe-config">
{
// Additional options to pass to CodeMirror instances
codeMirrorConfig: {},
}
</script>

You can use any of `the available CodeMirror configurations <https://codemirror.net/doc/manual.html#config>`_.
For example, the following configuration changes the CodeMirror theme:

.. code:: html

<!-- Configure and load Thebe !-->
<script type="text/x-thebe-config">
{
codeMirrorConfig: {
theme: "abcdef"
},
}
</script>

The below code cell demonstrates this theme:

.. raw:: html

<!-- Configure and load Thebe !-->
<script type="text/x-thebe-config">
{
requestKernel: true,
binderOptions: {
repo: "binder-examples/requirements",
},
codeMirrorConfig: {
theme: "abcdef"
},
}
</script>
<script src="https://unpkg.com/thebelab@latest/lib/index.js"></script>

<pre data-executable="true" data-language="python">
%matplotlib inline
import numpy as np
import matplotlib.pyplot as plt
plt.ion()
fig, ax = plt.subplots()
ax.scatter(*np.random.randn(2, 100), c=np.random.randn(100))
ax.set(title="Wow, an interactive plot!")
</pre>

.. raw:: html

<button id="activateButton" style="width: 120px; height: 40px; font-size: 1.5em;">Activate</button>
<script>
document.querySelector("#activateButton").addEventListener('click', thebelab.bootstrap)
</script>

The above code should be styled according to the
`CodeMirror abcdef theme <https://codemirror.net/demo/theme.html#abcdef>`_.
1 change: 1 addition & 0 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ result (be patient, it will take a few moments for Binder to start the kernel).
config_reference
minimal_example
howto/initialize_cells
howto/cm_customize


How ThebeLab works
Expand Down