Test page¶
This is a test page.
The page is generated from markdown with myst
table¶
a |
b |
---|---|
c |
d |
fenced code block¶
This is my
multi-line caption. It is pretty nifty ;-)¶
1 2 3 | a = 2
print('my 1st line')
print(f'my {a}nd line')
|
1 2 3 4 5 6 7 8 9 10 11 | class Super():
def __init_(self, var):
self.var = var
def show(self):
print(self.var)
@staticmethod
def printer():
print("this is a static method")
|