forked from AnswerDotAI/fasthtml
-
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 branch 'AnswerDotAI:main' into main
- Loading branch information
Showing
62 changed files
with
5,435 additions
and
1,968 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,8 @@ | ||
# See: https://github.com/codespell-project/codespell#using-a-config-file | ||
[codespell] | ||
# In the event of a false positive, add the problematic word, in all lowercase, to a comma-separated list here: | ||
ignore-words-list = convertor,convertors,noo,socio-economic | ||
# If a file has many false positives, exclude here: | ||
skip = ./.git | ||
# To exclude base64 encoded strings, ignore all long base64 compatible strings | ||
ignore-regex = [A-Za-z0-9+/]{1000,} |
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,47 @@ | ||
--- | ||
name: Bug Report | ||
about: Report a bug to help us improve | ||
title: '[BUG] ' | ||
labels: bug | ||
assignees: '' | ||
|
||
--- | ||
|
||
**Important Notice** | ||
We do not provide support through GitHub issues. For community-based help, please use either: | ||
- GitHub Discussions tab | ||
- Our [Discord channel](https://discord.gg/qcXvcxMhdP) | ||
|
||
If you're reporting a bug, please continue with this template. | ||
|
||
**Describe the bug** | ||
A clear and concise description of what the bug is. | ||
|
||
**Minimal Reproducible Example** | ||
Provide a minimal code snippet that reproduces the issue. This is crucial for us to understand and fix the bug quickly. | ||
|
||
```python | ||
# Your code here | ||
``` | ||
|
||
**Expected behavior** | ||
A clear and concise description of what you expected to happen. | ||
|
||
**Environment Information** | ||
Please provide the following version information: | ||
- fastlite version: | ||
- fastcore version: | ||
- fasthtml version: | ||
|
||
**Confirmation** | ||
Please confirm the following: | ||
- [ ] I have read the FAQ (https://docs.fastht.ml/explains/faq.html) | ||
- [ ] I have provided a minimal reproducible example | ||
- [ ] I have included the versions of fastlite, fastcore, and fasthtml | ||
- [ ] I understand that this is a volunteer open source project with no commercial support. | ||
|
||
**Additional context** | ||
Add any other context about the problem here. | ||
|
||
**Screenshots** | ||
If applicable, add screenshots to help explain your problem. |
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 @@ | ||
blank_issues_enabled: true | ||
contact_links: | ||
- name: Start a discussion | ||
url: https://github.com/AnswerDotAI/fasthtml/discussions | ||
about: You can ask for help here! | ||
- name: Join our Discord | ||
url: https://discord.gg/qcXvcxMhdP | ||
about: Join our community on Discord! |
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,40 @@ | ||
--- | ||
name: Feature Request | ||
about: Suggest an idea for this project | ||
title: '[FEATURE] ' | ||
labels: enhancement | ||
assignees: '' | ||
|
||
--- | ||
|
||
If you'd like to discuss your feature idea first with the community (highly recommended!) please visit our [Discord channel](https://discord.gg/qcXvcxMhdP). | ||
|
||
**Is your feature request related to a problem? Please describe.** | ||
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] | ||
|
||
**Describe the solution you'd like** | ||
A clear and concise description of what you want to happen. | ||
|
||
**Example code** | ||
Provide an example of how you imagine the feature working: | ||
|
||
```python | ||
# Your example code here | ||
``` | ||
|
||
**Similar implementations** | ||
If available, provide links to similar features in other libraries: | ||
1. [Library Name](link-to-feature) | ||
2. [Another Library](another-link-to-feature) | ||
|
||
**Problem solved** | ||
Explain what problem this feature would solve and how it would benefit users of the library: | ||
|
||
**Additional context** | ||
Add any other context or screenshots about the feature request here. | ||
|
||
**Confirmation** | ||
Please confirm the following: | ||
- [ ] I have checked the existing issues and pull requests to ensure this feature hasn't been requested before. | ||
- [ ] I have read the project's documentation to ensure this feature doesn't already exist. | ||
|
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,32 @@ | ||
--- | ||
name: Pull Request | ||
about: Propose changes to the codebase | ||
title: '[PR] ' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
**Related Issue** | ||
Please link to the issue that this pull request addresses. If there isn't one, please create an issue first. | ||
|
||
**Proposed Changes** | ||
Describe the big picture of your changes here. If it fixes a bug or resolves a feature request, be sure to link to that issue. | ||
|
||
**Types of changes** | ||
What types of changes does your code introduce? Put an `x` in all the boxes that apply: | ||
- [ ] Bug fix (non-breaking change which fixes an issue) | ||
- [ ] New feature (non-breaking change which adds functionality) | ||
- [ ] Breaking change (fix or feature that would cause existing functionality to change) | ||
|
||
**Checklist** | ||
Go over all the following points, and put an `x` in all the boxes that apply: | ||
- [ ] My code follows the code style of this project. | ||
- [ ] My change requires a change to the documentation. | ||
- [ ] I have updated the documentation accordingly. | ||
- [ ] I have added tests to cover my changes. | ||
- [ ] All new and existing tests passed. | ||
- [ ] I am aware that this is an nbdev project, and I have edited, cleaned, and synced the source notebooks instead of editing .py or .md files directly. | ||
|
||
**Additional Information** | ||
Any additional information, configuration or data that might be necessary to reproduce the issue. |
File renamed without changes.
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 |
---|---|---|
@@ -1,3 +1,4 @@ | ||
posts/ | ||
.quarto | ||
.sesskey | ||
*.db-* | ||
|
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.