Markdown Examples Part 3
Code blocks are preceeded by an indent, three : symbols and the name of the language.
All of the following code will be highlighted while the text is indented.
def do_twice(func):
def wrapper_do_twice(*args, **kwargs):
return func(*args, **kwargs).lower()
return wrapper_do_twice
@do_twice
def say_whee(some_text):
print(some_text)
x = 'Whee …