1.7 KiB
1.7 KiB
title |
---|
mkdocs syntax testing |
Welcome to MkDocs
For full documentation visit mkdocs.org.
Commands
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.
Project layout
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.
Abbreviation expansion
The HTML specification is maintained by the W3C.
Insert key presses
Here is more stuff. ++ctrl+alt+delete++ then press ++v+alt+shift++.
Code snippets
=== "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