Skip to content

Instantly share code, notes, and snippets.

@bhishanpdl
Created August 29, 2018 12:15
Show Gist options
  • Save bhishanpdl/948b3a8527cb48fda86723c4fe337d0d to your computer and use it in GitHub Desktop.
Save bhishanpdl/948b3a8527cb48fda86723c4fe337d0d to your computer and use it in GitHub Desktop.
[ipython_bold_and_blue] #ipython
from IPython.display import Markdown, display
def printmd(string, color=None):
colorstr = "<span style='color:{}'>{}</span>".format(color, string)
display(Markdown(colorstr))
printmd("**bold and blue**", color="blue")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment