print("Hello World!")
Hello World!
Christian Wittmann
October 18, 2022
This is somehow a “Hello World”-notebook, since its only purpose is to demonstrate how you can use a jupyter notebook to write a blog post using Quarto.
Somehow I did not find the key ingredient in the Quarto docs, but in this blog post: To get the necessary header data into the jupyter notebook, you need to add a RAW-cell at the top which contains the metadata. This is how this cell looks like in this notebook (and here is an hello-world example):
---
title: "Creating a Blog Post using a Jupyter Notebook"
author: "Christian Wittmann"
date: "2022-10-18"
categories: [blogging, quarto, jupyter]
image: "jupyter_logo.png"
---
For my current use case of blogging I prefer the jupyter notebooks, and I will most likely write all future blog posts in jupyter notebooks because of the following:
.qmd
files.Of course, all of this is very personal and a current snapshot of preferences (as a beginner) - let’s see if this solidifies or changes.
Let’s try out a little bit of code: