1
0
mirror of synced 2025-12-19 18:10:59 -05:00

Part 3: Third fourth content unordered lists from dash to asterisk (#51097)

This commit is contained in:
Grace Park
2024-06-13 10:44:39 -07:00
committed by GitHub
parent 6acca22e47
commit e3a169c100
253 changed files with 1869 additions and 1869 deletions

View File

@@ -98,13 +98,13 @@ You can use parentheses to express more complicated boolean expressions. For exa
## Using qualifiers
You can use specialized keywords to qualify your search.
- [Repository qualifier](#repository-qualifier)
- [Organization and user qualifiers](#organization-and-user-qualifiers)
- [Language qualifier](#language-qualifier)
- [Path qualifier](#path-qualifier)
- [Symbol qualifier](#symbol-qualifier)
- [Content qualifier](#content-qualifier)
- [Is qualifier](#is-qualifier)
* [Repository qualifier](#repository-qualifier)
* [Organization and user qualifiers](#organization-and-user-qualifiers)
* [Language qualifier](#language-qualifier)
* [Path qualifier](#path-qualifier)
* [Symbol qualifier](#symbol-qualifier)
* [Content qualifier](#content-qualifier)
* [Is qualifier](#is-qualifier)
### Repository qualifier
@@ -191,13 +191,13 @@ To search for JavaScript files within a `src` directory, you could use:
path:src/*.js
```
- By default, glob expressions are not anchored to the start of the path, so the above expression would still match a path like `app/src/main.js`. But if you prefix the expression with `/`, it will anchor to the start. For example:
* By default, glob expressions are not anchored to the start of the path, so the above expression would still match a path like `app/src/main.js`. But if you prefix the expression with `/`, it will anchor to the start. For example:
```text
path:/src/*.js
```
- Note that `*` doesn't match the `/` character, so for the above example, all results will be direct descendants of the `src` directory. To match within subdirectories, so that results include deeply nested files such as `/src/app/testing/utils/example.js`, you can use `**`. For example:
* Note that `*` doesn't match the `/` character, so for the above example, all results will be direct descendants of the `src` directory. To match within subdirectories, so that results include deeply nested files such as `/src/app/testing/utils/example.js`, you can use `**`. For example:
```text
path:/src/**/*.js
@@ -258,10 +258,10 @@ This query would only match files containing the term `README.md`, rather than m
To filter based on repository properties, you can use the `is:` qualifier. `is:` supports the following values:
- `archived`: restricts the search to archived repositories.
- `fork`: restricts the search to forked repositories.
- `vendored`: restricts the search to content detected as vendored.
- `generated`: restricts the search to content detected as generated.
* `archived`: restricts the search to archived repositories.
* `fork`: restricts the search to forked repositories.
* `vendored`: restricts the search to content detected as vendored.
* `generated`: restricts the search to content detected as generated.
For example: