title |
---|
mkdocs syntax testing |
For full documentation visit mkdocs.org.
mkdocs new [dir-name]
- Create a new project.mkdocs serve
- Start the live-reloading docs server.mkdocs build
- Build the documentation site.mkdocs -h
- Print help message and exit.
!!! info Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla et euismod nulla. Curabitur feugiat, tortor non consequat finibus, justo purus auctor massa, nec semper lorem quam in massa.
mkdocs.yml # The configuration file.
docs/
index.md # The documentation homepage.
... # Other markdown pages, images and other files.
Here is an example1 of a footnote2.
The HTML specification is maintained by the W3C.
Here is more stuff. ++ctrl+alt+delete++ then press ++v+alt+shift++.
=== "bash"
``` bash
#include <stdio.h>
int main(void) {
printf("Hello world!\n");
return 0;
}
```
Does this work with a superfence?
=== "C++"
``` c++ hl_lines="2 3"
#include <iostream>
int main(void) {
std::cout << "Hello world!" << std::endl;
return 0;
}
```
*[HTML]: Hyper Text Markup Language *[W3C]: World Wide Web Consortium