diff --git a/docs/example.md b/docs/example.md new file mode 100644 index 0000000000000000000000000000000000000000..1a9149d36a30c96618e73c11ab21af9f14b76268 --- /dev/null +++ b/docs/example.md @@ -0,0 +1,11 @@ +=== "Chimay" + + Chimay adfasdf + +=== "Karmeliet" + + Karmeliet is a fantastic blond Belgian beer. + +=== "leffe" + + asdfasdfasfd diff --git a/docs/index.md b/docs/index.md index 3c85189c9f524ffd7845a05926fb5fa78be8c4e1..5866a662d701a17061a87ac4b4c620ab824b8bf8 100644 --- a/docs/index.md +++ b/docs/index.md @@ -1,21 +1,45 @@ -# Welcome to MkDocs +# Testing mkdocs -This is a test site hosted on [GitLab Pages](https://pages.gitlab.io). You can -[browse its source code](https://gitlab.com/pages/mkdocs), fork it and start -using it on your projects. +hi there -For full documentation visit [mkdocs.org](http://mkdocs.org). -## Commands +:smile: -* `mkdocs new [dir-name]` - Create a new project. -* `mkdocs serve` - Start the live-reloading docs server. -* `mkdocs build` - Build the documentation site. -* `mkdocs help` - Print this help message. +:smile: -## Project layout - mkdocs.yml # The configuration file. - docs/ - index.md # The documentation homepage. - ... # Other markdown pages, images and other files. +```python +# Hello world example (Python) +print("Hello World!") +zero_to_ten_double = [2*x for x in range(10)] +``` + + +!!! note + hiiii + +!!! tip "yeeee" + aasdfasdfasfd + + +=== "C" + + ``` c + #include <stdio.h> + + int main(void) { + printf("Hello world!\n"); + return 0; + } + ``` + +=== "C++" + + ``` c++ + #include <iostream> + + int main(void) { + std::cout << "Hello world!" << std::endl; + return 0; + } + ``` diff --git a/docs/lele.md b/docs/lele.md new file mode 100644 index 0000000000000000000000000000000000000000..e6f33f920cde2c64e0a90182c32f4068fa10f8d3 --- /dev/null +++ b/docs/lele.md @@ -0,0 +1,23 @@ +# lele + +=== "AAA" + + ``` c + #include <stdio.h> + + int main(void) { + printf("Hello world!\n"); + return 0; + } + ``` + +=== "C++" + + ``` c++ + #include <iostream> + + int main(void) { + std::cout << "Hello world!" << std::endl; + return 0; + } + ```