Added quickstart from blag
This commit is contained in:
parent
1c7cc625d5
commit
fba3ddb1a5
19 changed files with 607 additions and 8 deletions
46
content/testpage.md
Normal file
46
content/testpage.md
Normal file
|
@ -0,0 +1,46 @@
|
|||
# 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
|
||||
```
|
Loading…
Add table
Add a link
Reference in a new issue