-
Notifications
You must be signed in to change notification settings - Fork 1
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
0 parents
commit 64cc4eb
Showing
28 changed files
with
3,536 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# Sphinx build info version 1 | ||
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. | ||
config: 6e962f2c9deaa77c08263a3acf8c2c82 | ||
tags: 645f666f9bcd5a90fca523b33c5a78b7 |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Empty file.
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,51 @@ | ||
# More features here | ||
|
||
|
||
## Some text | ||
|
||
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod | ||
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, | ||
quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo | ||
consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse | ||
cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non | ||
proident, sunt in culpa qui officia deserunt mollit anim id est laborum. | ||
|
||
|
||
## Table | ||
|
||
| No. | Prime | | ||
| ---- | ------ | | ||
| 1 | No | | ||
| 2 | Yes | | ||
| 3 | Yes | | ||
| 4 | No | | ||
|
||
|
||
|
||
## Code blocks | ||
|
||
The following is a Python code block: | ||
```python | ||
def hello(): | ||
print("Hello world") | ||
``` | ||
|
||
And this is a C code block: | ||
```c | ||
#include <stdio.h> | ||
int main() | ||
{ | ||
printf("Hello, World!"); | ||
return 0; | ||
} | ||
``` | ||
|
||
|
||
## Math | ||
|
||
This creates an equation: | ||
```{math} | ||
a^2 + b^2 = c^2 | ||
``` | ||
|
||
This is an in-line equation, {math}`a^2 + b^2 = c^2`, embedded in text. |
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 @@ | ||
.. Example documentation master file, created by | ||
sphinx-quickstart on Sat Sep 23 20:35:12 2023. | ||
You can adapt this file completely to your liking, but it should at least | ||
contain the root `toctree` directive. | ||
Welcome to Example's documentation! | ||
=================================== | ||
|
||
.. toctree:: | ||
:maxdepth: 2 | ||
:caption: Contents: | ||
|
||
some-feature.md | ||
another-feature.md |
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 @@ | ||
# Some feature | ||
|
||
## Subsection | ||
|
||
Exciting documentation in here. | ||
Let's make a list (empty surrounding lines required): | ||
|
||
- item 1 | ||
|
||
- nested item 1 | ||
- nested item 2 | ||
|
||
- item 2 | ||
- item 3 |
Oops, something went wrong.