less than 1 minute read

The official Notion API finally supports code blocks with a recent update. I’ve updated NotionToJekyll to add this functionality. This post is just a test to see if code blocks with different languages work properly.

echo "Hello World"
#include 
 
int main(void)
{
    puts("Hello, world!");
}
using System;
class Program
{
    public static void Main(string[] args)
    {
        Console.WriteLine("Hello, world!");
    }
}