-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
189: Update issue templates r=lnicola a=notriddle Co-authored-by: Michael Howell <[email protected]>
- Loading branch information
Showing
4 changed files
with
67 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,48 @@ | ||
--- | ||
name: Bug Report | ||
about: Create a report to help us improve | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
- [ ] If you used a custom Builder configuration, please supply it here | ||
|
||
```rust | ||
Builder::default() | ||
.link_rel(None) | ||
.url_relative(UrlRelative::PassThrough) | ||
``` | ||
|
||
- [ ] Please supply a reduced version of the *input* HTML that you used with Ammonia | ||
|
||
```html | ||
fill <html> in here | ||
``` | ||
|
||
- [ ] If ammonia produced unexpected HTML | ||
|
||
- [ ] Try opening the *input* HTML directly in a WHATWG web browser (like Safari, Edge, Chrome, or Firefox) without sanitizing it. | ||
|
||
If the browser parses it the same way Ammonia does, then it's not a bug. | ||
|
||
- [ ] Supply the reduced *output* HTML here | ||
|
||
```html | ||
output <html> here | ||
``` | ||
|
||
- [ ] If Ammonia panics, please provide a backtrace | ||
|
||
```text | ||
$ RUST_BACKTRACE=1 ./test | ||
thread 'main' panicked at test.rs:1:17: | ||
explicit panic | ||
stack backtrace: | ||
0: std::panicking::begin_panic | ||
1: test::other_fn | ||
2: test::main | ||
3: core::ops::function::FnOnce::call_once | ||
note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. | ||
``` |
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,17 @@ | ||
--- | ||
name: Feature request | ||
about: Suggest an idea for this project | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
**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. | ||
|
||
**Describe alternatives you've considered** | ||
A clear and concise description of any alternative solutions or features you've considered. |
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