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!
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!
# Hello
Here is some text
Here is how warnings look
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
Hello
Here is some text
output
Hello World
Here is how warnings look
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
error
NotImplementedError: [0;31m---------------------------------------------------------------------------[0m [0;31mNotImplementedError[0m Traceback (most recent call last) Cell [0;32mIn[5], line 1[0m [0;32m----> 1[0m [38;5;28;01mraise[39;00m [38;5;167;01mNotImplementedError[39;00m
[0;31mNotImplementedError[0m: