This repository has been archived by the owner on Oct 4, 2024. It is now read-only.
-
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
1 parent
6adc0c8
commit 8e6d1c7
Showing
10 changed files
with
295 additions
and
40 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
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
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,7 @@ | ||
# Public Application Functions | ||
|
||
Here is the complete list of public functions. | ||
|
||
::: myhelpers.dummy.longest_common_prefix | ||
options: | ||
show_root_heading: true |
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,6 @@ | ||
# Additional Primitive Helpers | ||
|
||
Here is a list of additional primitive helpers. | ||
|
||
::: myhelpers.primitives.envvar.EnvVariable | ||
::: myhelpers.primitives.singleton.SingletonMeta |
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,8 @@ | ||
--- | ||
icon: material/code-tags | ||
--- | ||
|
||
# API Reference | ||
|
||
This section contains public API References to source code. | ||
Refer to each subpage for more content. |
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 @@ | ||
--- | ||
title: Home | ||
description: Welcome to the documentation of your code | ||
icon: material/home | ||
--- | ||
|
||
# Documentation | ||
|
||
This is the main page of the documentation to your code. | ||
Feel free to write article or customize all you want. | ||
|
||
## Useful Links | ||
|
||
- [API Reference](API%20Reference/index.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,10 @@ | ||
document$.subscribe(({ body }) => { | ||
renderMathInElement(body, { | ||
delimiters: [ | ||
{ left: "$$", right: "$$", display: true }, | ||
{ left: "$", right: "$", display: false }, | ||
{ left: "\\(", right: "\\)", display: false }, | ||
{ left: "\\[", right: "\\]", display: true } | ||
], | ||
}) | ||
}) |
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,77 @@ | ||
# yaml-language-server: $schema=https://squidfunk.github.io/mkdocs-material/schema.json | ||
site_name: "My Project" | ||
site_url: "https://example.com/" | ||
repo_url: https://github.com/abhabongse/python-project | ||
nav: | ||
- Home: index.md | ||
- "API Reference": | ||
- ./api/index.md | ||
- "App Functions": ./api/app.md | ||
- "Helper Functions": ./api/helpers.md | ||
theme: | ||
# More info: https://squidfunk.github.io/mkdocs-material/creating-your-site/ | ||
name: material | ||
palette: | ||
scheme: slate | ||
primary: black | ||
accent: orange | ||
font: | ||
text: "IBM Plex Sans" | ||
code: "JetBrains Mono" | ||
icon: | ||
annotation: material/plus-circle-outline | ||
features: | ||
- content.code.copy | ||
- content.code.select | ||
- content.tooltips | ||
- navigation.tracking | ||
- navigation.tabs | ||
- navigation.path | ||
- navigation.indexes | ||
- search.suggest | ||
- search.highlight | ||
# noinspection YAMLSchemaValidation | ||
plugins: | ||
- glightbox | ||
- mkdocstrings: | ||
enabled: true | ||
default_handler: python | ||
handlers: | ||
python: | ||
options: | ||
show_root_heading: true | ||
heading_level: 3 | ||
import: | ||
- https://docs.python.org/3/objects.inv | ||
- search | ||
- social | ||
# noinspection YAMLSchemaValidation | ||
markdown_extensions: | ||
- abbr | ||
- admonition | ||
- attr_list | ||
- def_list | ||
- footnotes | ||
- md_in_html | ||
- pymdownx.arithmatex: | ||
generic: true | ||
- pymdownx.details | ||
- pymdownx.highlight: | ||
anchor_linenums: true | ||
line_spans: __span | ||
pygments_lang_class: true | ||
- pymdownx.inlinehilite | ||
- pymdownx.snippets | ||
- pymdownx.superfences | ||
- pymdownx.tabbed: | ||
alternate_style: true | ||
- tables | ||
- toc: | ||
title: On this page | ||
permalink: true | ||
extra_javascript: | ||
- ./javascripts/katex.js | ||
- https://cdn.jsdelivr.net/npm/katex@0.16/dist/katex.min.js | ||
- https://cdn.jsdelivr.net/npm/katex@0.16/dist/contrib/auto-render.min.js | ||
extra_css: | ||
- https://cdn.jsdelivr.net/npm/katex@0.16/dist/katex.min.css |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.