-
Notifications
You must be signed in to change notification settings - Fork 2
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
14 changed files
with
1,487 additions
and
214 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,23 @@ | ||
name: Docs | ||
on: | ||
pull_request: | ||
push: | ||
branches: | ||
- main | ||
permissions: | ||
contents: write | ||
jobs: | ||
docs: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout branch | ||
uses: actions/checkout@v4 | ||
- name: Set up pixi | ||
uses: prefix-dev/setup-pixi@ba3bb36eb2066252b2363392b7739741bb777659 | ||
with: | ||
environments: docs | ||
- name: Build docs | ||
run: pixi run -e docs docs-build | ||
- name: Deploy docs | ||
if: github.event_name == 'push' && github.ref == 'refs/heads/main' | ||
run: pixi run -e docs mkdocs gh-deploy --force |
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 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,3 @@ | ||
# API Documentation | ||
|
||
::: multiregex |
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,5 @@ | ||
# multiregex | ||
|
||
Quickly match many regexes against a string. Provides 2-10x speedups over naïve regex matching. | ||
|
||
[API Documentation](api-documentation.md) |
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,58 @@ | ||
site_name: multiregex | ||
site_description: Quickly match many regexes against a string. Provides 2-10x speedups over naïve regex matching. | ||
site_url: https://quantco.github.io/multiregex | ||
theme: | ||
name: material | ||
palette: | ||
# Palette toggle for automatic mode | ||
- media: "(prefers-color-scheme)" | ||
toggle: | ||
icon: material/brightness-auto | ||
name: Switch to light mode | ||
# Palette toggle for light mode | ||
- media: "(prefers-color-scheme: light)" | ||
scheme: default | ||
toggle: | ||
icon: material/brightness-7 | ||
name: Switch to dark mode | ||
primary: deep purple | ||
# Palette toggle for dark mode | ||
- media: "(prefers-color-scheme: dark)" | ||
scheme: slate | ||
toggle: | ||
icon: material/brightness-4 | ||
name: Switch to system preference | ||
primary: deep purple | ||
features: | ||
- content.action.edit | ||
- search.suggest | ||
- search.highlight | ||
- content.code.annotate | ||
- content.code.copy | ||
icon: | ||
repo: fontawesome/brands/github-alt | ||
edit: material/pencil | ||
repo_name: quantco/multiregex | ||
repo_url: https://github.com/quantco/multiregex | ||
edit_uri: edit/main/docs/ | ||
plugins: | ||
- search | ||
- mkdocstrings: | ||
handlers: | ||
python: | ||
options: | ||
unwrap_annotated: true | ||
show_symbol_type_heading: true | ||
docstring_style: numpy | ||
docstring_section_style: spacy | ||
separate_signature: true | ||
merge_init_into_class: true | ||
|
||
nav: | ||
- index.md | ||
- api-documentation.md | ||
markdown_extensions: | ||
- admonition | ||
- pymdownx.highlight | ||
- pymdownx.superfences | ||
- pymdownx.inlinehilite |
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
Oops, something went wrong.