46 lines
1 KiB
Markdown
46 lines
1 KiB
Markdown
# This Is A Headline
|
|
|
|
This is some **bold text** with some `code` inside. This is _some_underlined_
|
|
text with some `code` inside. This is some text with some `code` inside. This
|
|
is some text with some `code` inside. This is some text with some `code`
|
|
inside. This is some text with some `code` inside. This is some text with some
|
|
`code` inside. This is some text with some `code` inside.
|
|
|
|
This is some [link](https://example.com) inside the text -- it does not really
|
|
lead anywhere! This is some [link](https://example.com) inside the text -- it
|
|
does not really lead anywhere! This is some [link](https://example.com) inside
|
|
the text -- it does not really lead anywhere!
|
|
|
|
|
|
* some bullets
|
|
* some other
|
|
* bullets
|
|
* foo
|
|
|
|
```python
|
|
# this is some python code
|
|
|
|
class Foo:
|
|
|
|
def __init__(self, foo, bar):
|
|
self.foo = foo
|
|
self.bar = bar
|
|
|
|
def do_something():
|
|
"""This is the docstring of this method.
|
|
|
|
"""
|
|
return foo
|
|
```
|
|
|
|
|
|
## Some other headline
|
|
|
|
This is some other text
|
|
|
|
```makefile
|
|
|
|
# some comment
|
|
foo:
|
|
ls -lh
|
|
```
|