Skip to content

Instantly share code, notes, and snippets.

@alexhsamuel
Created November 27, 2017 15:50
Show Gist options
  • Save alexhsamuel/0fe9d4481910363f4cdccb157b9eb079 to your computer and use it in GitHub Desktop.
Save alexhsamuel/0fe9d4481910363f4cdccb157b9eb079 to your computer and use it in GitHub Desktop.
disable font ligatures in Jupyter notebooks
from IPython.core.display import HTML
HTML("""
<style>
body { font-feature-settings: "liga" 0; }
</style>
""")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment