Note Interactivity

Mar 04, 2024

Added some touches that allow notes to come alive a little bit more, including the ability to easily highlight code using Highlight JS 💅

# Let's test the syntax highlighting with a simple factorial function
def fact(n)
  if n == 0
    1
  else
    n * fact(n-1)
  end
end