Published

2025-03-31

Open In Colab

Markdown Capabilities


You’ve seen that we can include text cells that get ‘marked up’ into a nicer format in our notebooks. This notebook discusses this markdown syntax!

Note: These types of webpages are built from Jupyter notebooks (.ipynb files). You can access your own versions of them by clicking here. It is highly recommended that you go through and run the notebooks yourself, modifying and rerunning things where you’d like!


What is Markdown?

  • Most have heard of HTML (HyperText Mark-up Language)
    • There we write plain text that the browser interprets and renders
  • Markdown is a specific ‘mark-up’ language
    • Easier syntax
    • Not as powerful
  • Can be used in ‘Text’ cells
  • Double click a text cell to see the plain text formatting used!
  • Shift enter to make the cell ‘render’

Markdown Syntax

Let’s just go through examples of some of the most commonly used syntax (you can always see the syntax used in our notebooks by opening them in Colab and double clicking a cell!)

  • General link: [link](URL or relative link)
  • *italics* and _italics_
  • **bold** and __bold__
  • _**italics and bold!**_ is fancy and loud
  • ~~strikethrough~~ becomes strikethrough

  • --- Three dashes for a thematic break
  • # Level 1 Header, ## Level 2 Header, to six levels
  • Important!: The use of headers can automatically creates a Table of Contents! This is super important for jumping through your document.
    • See top left icon on Colab
  • Include an image: ![](path/to/file.png) (double click this cell to see the URL we pull this image from)
  • Surround text with backticks to make ‘code font’ (this makes it look like you know what you are doing :)

Widgets and Such

We can bring in lots of HTML style widgets into our notebooks! Widget Info

  • Lots of fun widgets that you can add
    • Maps
    • Sliders
    • Text input
    • Check boxes
    • Etc.
  • Things won’t always work quite right in Colab but will when we move to JupyterLab later in the semester!

Video Demo

This quick video demo shows how we can include some interactive HTML content in our Colab notebook. (Of course you can see we are bringing in a video here as well!) Remember to pop the video out into the full player using the button in the bottom right.

The notebook written in the video is available here.

from IPython.display import IFrame
IFrame(src = 'https://ncsu.hosted.panopto.com/Panopto/Pages/Embed.aspx?id=32a49a33-bc92-49ab-b767-b0ef0167e1b3&autoplay=false&offerviewer=true&showtitle=true&showbrand=true&captions=false&interactivity=all', width = '720', height = '405')

Recap

If you are on the course website, use the table of contents on the left or the arrows at the bottom of this page to navigate to the next learning material!

If you are on Google Colab, head back to our course website for our next lesson!