Skip to content

Instantly share code, notes, and snippets.

@alexhsamuel
alexhsamuel / disable-ligatures.py
Created November 27, 2017 15:50
disable font ligatures in Jupyter notebooks
from IPython.core.display import HTML
HTML("""
<style>
body { font-feature-settings: "liga" 0; }
</style>
""")