Skip to content

Commit

Permalink
deploy: 386462b
Browse files Browse the repository at this point in the history
  • Loading branch information
KatherineMichel committed Dec 28, 2023
0 parents commit 64cc4eb
Show file tree
Hide file tree
Showing 28 changed files with 3,536 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .buildinfo
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 added .doctrees/another-feature.doctree
Binary file not shown.
Binary file added .doctrees/environment.pickle
Binary file not shown.
Binary file added .doctrees/index.doctree
Binary file not shown.
Binary file added .doctrees/some-feature.doctree
Binary file not shown.
Empty file added .nojekyll
Empty file.
51 changes: 51 additions & 0 deletions _sources/another-feature.md.txt
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.
14 changes: 14 additions & 0 deletions _sources/index.rst.txt
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
14 changes: 14 additions & 0 deletions _sources/some-feature.md.txt
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
Loading

0 comments on commit 64cc4eb

Please sign in to comment.