Skip to main content

Python Docusaurus Template

A no-nonsense markdown-only template with runnable and editable Python code blocks

Get Started
def foo():
    print("How much foo")
    print("would a foo bar bar")
    print("if a foo bar could bar foo?")
    
    
def bar():
    print("A foo bar would bar")
    print("as much foo as a foo bar could bar")
    print("if a foo bar could bar foo.")
    

foo()
print()
bar()