-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
23 changed files
with
19 additions
and
211 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,6 @@ | ||
# https://github.com/lukasgeiter/mkdocs-awesome-pages-plugin | ||
nav: | ||
- index.md | ||
- getting-started | ||
- concepts | ||
- Wiring Diagram: wiring | ||
- Install & Upgrade: install-upgrade | ||
- User Guide: user-guide | ||
- Reference: reference | ||
- Troubleshooting: troubleshooting | ||
- ... | ||
- contribute | ||
- release-notes | ||
|
Binary file not shown.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Empty file.
Empty file.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,165 +1,6 @@ | ||
# Introduction | ||
|
||
For full documentation visit [mkdocs.org](https://www.mkdocs.org). | ||
Documentation for alpha-1 release is available though the [support portal](https://support.githedgehog.com/) | ||
Knowledge base articles. | ||
|
||
## 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. | ||
|
||
## Project layout | ||
|
||
mkdocs.yml # The configuration file. | ||
docs/ | ||
index.md # The documentation homepage. | ||
... # Other markdown pages, images and other files. | ||
|
||
|
||
## Examples | ||
|
||
https://squidfunk.github.io/mkdocs-material/reference/ | ||
|
||
The HTML specification is maintained by the W3C. | ||
|
||
*[HTML]: Hyper Text Markup Language | ||
|
||
W3C abbr coming from includes/abbreviations.md | ||
|
||
|
||
https://squidfunk.github.io/mkdocs-material/reference/admonitions/ | ||
https://squidfunk.github.io/mkdocs-material/reference/admonitions/#supported-types | ||
|
||
```markdown | ||
!!! note | ||
|
||
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. | ||
``` | ||
|
||
!!! note | ||
|
||
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. | ||
|
||
```markdown | ||
!!! info inline end "Lorem ipsum" | ||
|
||
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. | ||
``` | ||
|
||
!!! info end "Lorem ipsum" | ||
|
||
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. | ||
|
||
``` py | ||
import tensorflow as tf | ||
``` | ||
|
||
``` py title="bubble_sort.py" hl_lines="2 3" linenums="1" | ||
def bubble_sort(items): | ||
for i in range(len(items)): | ||
for j in range(len(items) - 1 - i): | ||
if items[j] > items[j + 1]: | ||
items[j], items[j + 1] = items[j + 1], items[j] | ||
``` | ||
|
||
``` yaml | ||
theme: | ||
features: | ||
- content.code.annotate # (1) | ||
``` | ||
1. :man_raising_hand: I'm a code annotation! I can contain `code`, __formatted | ||
text__, images, ... basically anything that can be written in Markdown. | ||
|
||
|
||
|
||
=== "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; | ||
} | ||
``` | ||
|
||
|
||
| Method | Description | | ||
| :---------- | :----------------------------------- | | ||
| `GET` | :material-check: Fetch resource | | ||
| `PUT` | :material-check-all: Update resource | | ||
| `DELETE` | :material-close: Delete resource | | ||
|
||
|
||
``` mermaid | ||
graph LR | ||
A[Start] --> B{Error?}; | ||
B -->|Yes| C[Hmm...]; | ||
C --> D[Debug]; | ||
D --> B; | ||
B ---->|No| E[Yay!]; | ||
``` | ||
|
||
``` mermaid | ||
sequenceDiagram | ||
autonumber | ||
Alice->>John: Hello John, how are you? | ||
loop Healthcheck | ||
John->>John: Fight against hypochondria | ||
end | ||
Note right of John: Rational thoughts! | ||
John-->>Alice: Great! | ||
John->>Bob: How about you? | ||
Bob-->>John: Jolly good! | ||
``` | ||
|
||
Text can be {--deleted--} and replacement text {++added++}. This can also be | ||
combined into {~~one~>a single~~} operation. {==Highlighting==} is also | ||
possible {>>and comments can be added inline<<}. | ||
|
||
{== | ||
|
||
Formatting can also be applied to blocks by putting the opening and closing | ||
tags on separate lines and adding new lines between the tags and the content. | ||
|
||
==} | ||
|
||
++ctrl+alt+del++ | ||
|
||
|
||
``` markdown | ||
:fontawesome-regular-face-laugh-wink: | ||
:fontawesome-brands-twitter:{ .twitter } | ||
``` | ||
|
||
:fontawesome-regular-face-laugh-wink: | ||
:fontawesome-brands-twitter:{ .twitter } | ||
|
||
https://github.com/mkdocstrings/autorefs | ||
|
||
(test url)[https://test.githedgehog.com] | ||
Release notes are available [here](release-notes/index.md). |
This file was deleted.
Oops, something went wrong.
Empty file.
Empty file.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# Release notes | ||
|
||
## Alpha-1 | ||
|
||
Fabric topology: collapsed-core | ||
|
||
Software versions: | ||
|
||
* Fabricator: v0.5.2 | ||
* Fabric: v0.18.6 | ||
* Das-boot: v0.8.2 | ||
* K3s: v1.27.4-k3s1 | ||
* Zot: v1.4.3 | ||
* SONiC: Broadcom Enterprise Base 4.1.1 |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Empty file.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.