-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from baluyotraf/feature/docs
Add documentation
- Loading branch information
Showing
8 changed files
with
97 additions
and
2 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 @@ | ||
altqq.baluyotraf.com |
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,21 @@ | ||
# API Reference | ||
|
||
## Modeling | ||
|
||
These are used for defining queries. | ||
|
||
### ::: altqq.Query | ||
|
||
## PyODBC | ||
|
||
These are used for working with PyODBC. | ||
|
||
### ::: altqq.to_pyodbc | ||
|
||
### ::: altqq.PyODBCQuery | ||
|
||
## Plain Text | ||
|
||
These are used for working with plain text SQL. | ||
|
||
### ::: altqq.to_plain_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,3 @@ | ||
{% | ||
include-markdown "../README.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,56 @@ | ||
site_name: Alternative Queries | ||
site_url: https://altqq.baluyotraf.com | ||
site_description: Typed and Composable Tool for Handwritten SQL | ||
repo_url: https://github.com/baluyotraf/altqq | ||
repo_name: baluyotraf/altqq | ||
edit_uri: "" | ||
copyright: Copyright © 2024 Raffaello Baluyot | ||
|
||
nav: | ||
- Quick Start: index.md | ||
- api.md | ||
|
||
plugins: | ||
- include-markdown | ||
- mkdocstrings: | ||
default_handler: python | ||
handlers: | ||
python: | ||
options: | ||
show_root_heading: true | ||
- search | ||
- social | ||
|
||
|
||
markdown_extensions: | ||
- pymdownx.superfences | ||
- pymdownx.highlight: | ||
anchor_linenums: true | ||
auto_title: true | ||
|
||
theme: | ||
name: material | ||
language: en | ||
palette: | ||
primary: black | ||
accent: light blue | ||
icon: | ||
logo: fontawesome/solid/database | ||
repo: fontawesome/brands/github | ||
features: | ||
- navigation.instant | ||
- navigation.tabs | ||
- navigation.tabs.sticky | ||
- navigation.top | ||
|
||
extra: | ||
version: | ||
default: stable | ||
provider: mike | ||
social: | ||
- icon: fontawesome/brands/linkedin | ||
link: https://www.linkedin.com/in/baluyotraf/ | ||
name: baluyotraf | ||
- icon: fontawesome/brands/github | ||
link: https://github.com/baluyotraf | ||
name: baluyotraf |
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 @@ | ||
"""Entry module for translators.""" |
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