Skip to content

You can take a look at the .qmd that generated this docs from:

https://github.com/jspaezp/mkquartodocs/tree/main/docs

But we can use python to check the contents of this file!

with open("example.qmd", "r") as f:
    for l in f:
        print("> ", str(l))

output

# This is a simple example that uses python

You can take a look at the .qmd that generated this docs

from:

https://github.com/jspaezp/mkquartodocs/tree/main/docs

But we can use python to check the contents of this file!

with open("example.qmd", "r") as f:

    for l in f:

        print("> ", str(l))

# Hello

Here is some text

print("Hello World")

Here is how warnings look

import warnings

warnings.warn("This is a warning")

Some python logic

# Fizz buzz as a simple list comprehension

out = ["Fizz"*(i%3==0)+"Buzz"*(i%5==0) or str(i) for i in range(1, 101)]

print(out)

And finally an error just to see how it looks

#| error: true

raise NotImplementedError

Hello

Here is some text

print("Hello World")

output

Hello World

Here is how warnings look

import warnings
warnings.warn("This is a warning")

stderr

/tmp/ipykernel_2058/1338237052.py:2: UserWarning: This is a warning warnings.warn("This is a warning")

Some python logic

# Fizz buzz as a simple list comprehension
out = ["Fizz"*(i%3==0)+"Buzz"*(i%5==0) or str(i) for i in range(1, 101)]
print(out)

output

['1', '2', 'Fizz', '4', 'Buzz', 'Fizz', '7', '8', 'Fizz', 'Buzz', '11', 'Fizz', '13', '14', 'FizzBuzz', '16', '17', 'Fizz', '19', 'Buzz', 'Fizz', '22', '23', 'Fizz', 'Buzz', '26', 'Fizz', '28', '29', 'FizzBuzz', '31', '32', 'Fizz', '34', 'Buzz', 'Fizz', '37', '38', 'Fizz', 'Buzz', '41', 'Fizz', '43', '44', 'FizzBuzz', '46', '47', 'Fizz', '49', 'Buzz', 'Fizz', '52', '53', 'Fizz', 'Buzz', '56', 'Fizz', '58', '59', 'FizzBuzz', '61', '62', 'Fizz', '64', 'Buzz', 'Fizz', '67', '68', 'Fizz', 'Buzz', '71', 'Fizz', '73', '74', 'FizzBuzz', '76', '77', 'Fizz', '79', 'Buzz', 'Fizz', '82', '83', 'Fizz', 'Buzz', '86', 'Fizz', '88', '89', 'FizzBuzz', '91', '92', 'Fizz', '94', 'Buzz', 'Fizz', '97', '98', 'Fizz', 'Buzz']

And finally an error just to see how it looks

raise NotImplementedError

error

NotImplementedError: --------------------------------------------------------------------------- NotImplementedError Traceback (most recent call last) Cell In[5], line 1 ----> 1 raise NotImplementedError

NotImplementedError: