Skip to content

Commit c851498

Browse files
committed
Update formatting of docs page
Signed-off-by: Timo Sand <timo.sand@f-secure.com>
1 parent bbee84b commit c851498

1 file changed

Lines changed: 61 additions & 61 deletions

File tree

website/docs/d/repository.html.markdown

Lines changed: 61 additions & 61 deletions
Original file line numberDiff line numberDiff line change
@@ -21,110 +21,110 @@ data "github_repository" "example" {
2121

2222
The following arguments are supported:
2323

24-
* `name` - (Optional) The name of the repository.
24+
- `name` - (Optional) The name of the repository.
2525

26-
* `full_name` - (Optional) Full name of the repository (in `org/name` format).
26+
- `full_name` - (Optional) Full name of the repository (in `org/name` format).
2727

2828
## Attributes Reference
2929

30-
* `node_id` - the Node ID of the repository.
30+
- `node_id` - the Node ID of the repository.
3131

32-
* `description` - A description of the repository.
32+
- `description` - A description of the repository.
3333

34-
* `homepage_url` - URL of a page describing the project.
34+
- `homepage_url` - URL of a page describing the project.
3535

36-
* `private` - Whether the repository is private.
36+
- `private` - Whether the repository is private.
3737

38-
* `visibility` - Whether the repository is public, private or internal.
38+
- `visibility` - Whether the repository is public, private or internal.
3939

40-
* `has_issues` - Whether the repository has GitHub Issues enabled.
40+
- `has_issues` - Whether the repository has GitHub Issues enabled.
4141

42-
* `has_discussions` - Whether the repository has GitHub Discussions enabled.
42+
- `has_discussions` - Whether the repository has GitHub Discussions enabled.
4343

44-
* `has_projects` - Whether the repository has the GitHub Projects enabled.
44+
- `has_projects` - Whether the repository has the GitHub Projects enabled.
4545

46-
* `has_wiki` - Whether the repository has the GitHub Wiki enabled.
46+
- `has_wiki` - Whether the repository has the GitHub Wiki enabled.
4747

48-
* `is_template` - Whether the repository is a template repository.
48+
- `is_template` - Whether the repository is a template repository.
4949

50-
* `fork` - Whether the repository is a fork.
50+
- `fork` - Whether the repository is a fork.
5151

52-
* `allow_merge_commit` - Whether the repository allows merge commits.
52+
- `allow_merge_commit` - Whether the repository allows merge commits.
5353

54-
* `allow_squash_merge` - Whether the repository allows squash merges.
54+
- `allow_squash_merge` - Whether the repository allows squash merges.
5555

56-
* `allow_rebase_merge` - Whether the repository allows rebase merges.
56+
- `allow_rebase_merge` - Whether the repository allows rebase merges.
5757

58-
* `allow_auto_merge` - Whether the repository allows auto-merging pull requests.
58+
- `allow_auto_merge` - Whether the repository allows auto-merging pull requests.
5959

60-
* `allow_forking` - Whether the repository allows private forking; this is only relevant if the repository is owned by an organization and is private or internal.
60+
- `allow_forking` - Whether the repository allows private forking; this is only relevant if the repository is owned by an organization and is private or internal.
6161

62-
* `squash_merge_commit_title` - The default value for a squash merge commit title.
62+
- `squash_merge_commit_title` - The default value for a squash merge commit title.
6363

64-
* `squash_merge_commit_message` - The default value for a squash merge commit message.
64+
- `squash_merge_commit_message` - The default value for a squash merge commit message.
6565

66-
* `merge_commit_title` - The default value for a merge commit title.
66+
- `merge_commit_title` - The default value for a merge commit title.
6767

68-
* `merge_commit_message` - The default value for a merge commit message.
68+
- `merge_commit_message` - The default value for a merge commit message.
6969

70-
* `has_downloads` - (**DEPRECATED**) Whether the repository has Downloads feature enabled. This attribute is no longer in use, but it hasn't been removed yet. It will be removed in a future version. See [this discussion](https://github.com/orgs/community/discussions/102145#discussioncomment-8351756).
70+
- `has_downloads` - (**DEPRECATED**) Whether the repository has Downloads feature enabled. This attribute is no longer in use, but it hasn't been removed yet. It will be removed in a future version. See [this discussion](https://github.com/orgs/community/discussions/102145#discussioncomment-8351756).
7171

72-
* `default_branch` - The name of the default branch of the repository.
72+
- `default_branch` - The name of the default branch of the repository.
7373

74-
* `primary_language` - The primary language used in the repository.
74+
- `primary_language` - The primary language used in the repository.
7575

76-
* `archived` - Whether the repository is archived.
76+
- `archived` - Whether the repository is archived.
7777

78-
* `pages` - (**DEPRECATED**) The repository's GitHub Pages configuration. Use the `github_repository_pages` data source instead. This field will be removed in a future version.
78+
- `pages` - (**DEPRECATED**) The repository's GitHub Pages configuration. Use the `github_repository_pages` data source instead. This field will be removed in a future version.
7979

80-
* `topics` - The list of topics of the repository.
80+
- `topics` - The list of topics of the repository.
8181

82-
* `template` - The repository source template configuration.
82+
- `template` - The repository source template configuration.
8383

84-
* `html_url` - URL to the repository on the web.
84+
- `html_url` - URL to the repository on the web.
8585

86-
* `ssh_clone_url` - URL that can be provided to `git clone` to clone the repository via SSH.
86+
- `ssh_clone_url` - URL that can be provided to `git clone` to clone the repository via SSH.
8787

88-
* `http_clone_url` - URL that can be provided to `git clone` to clone the repository via HTTPS.
88+
- `http_clone_url` - URL that can be provided to `git clone` to clone the repository via HTTPS.
8989

90-
* `git_clone_url` - URL that can be provided to `git clone` to clone the repository anonymously via the git protocol.
90+
- `git_clone_url` - URL that can be provided to `git clone` to clone the repository anonymously via the git protocol.
9191

92-
* `svn_url` - URL that can be provided to `svn checkout` to check out the repository via GitHub's Subversion protocol emulation.
92+
- `svn_url` - URL that can be provided to `svn checkout` to check out the repository via GitHub's Subversion protocol emulation.
9393

94-
* `node_id` - GraphQL global node id for use with v4 API
94+
- `node_id` - GraphQL global node id for use with v4 API
9595

96-
* `repo_id` - GitHub ID for the repository
96+
- `repo_id` - GitHub ID for the repository
9797

98-
* `repository_license` - An Array of GitHub repository licenses. Each `repository_license` block consists of the fields documented below.
98+
- `repository_license` - An Array of GitHub repository licenses. Each `repository_license` block consists of the fields documented below.
9999

100100
___
101101

102102
The `repository_license` block consists of:
103103

104-
* `content` - Content of the license file, encoded by encoding scheme mentioned below.
105-
* `download_url` - The URL to download the raw content of the license file.
106-
* `encoding` - The encoding used for the content (e.g., "base64").
107-
* `git_url` - The URL to access information about the license file as a Git blob.
108-
* `html_url` - The URL to view the license file on GitHub.
109-
* `license` - `license` block consists of the fields documented below.
110-
* `name` - The name of the license file (e.g., "LICENSE").
111-
* `path` - The path to the license file within the repository.
112-
* `sha` - The SHA hash of the license file.
113-
* `size` - The size of the license file in bytes.
114-
* `type` - The type of the content, (e.g., "file").
115-
* `url` - The URL to access information about the license file on GitHub.
104+
- `content` - Content of the license file, encoded by encoding scheme mentioned below.
105+
- `download_url` - The URL to download the raw content of the license file.
106+
- `encoding` - The encoding used for the content (e.g., "base64").
107+
- `git_url` - The URL to access information about the license file as a Git blob.
108+
- `html_url` - The URL to view the license file on GitHub.
109+
- `license` - `license` block consists of the fields documented below.
110+
- `name` - The name of the license file (e.g., "LICENSE").
111+
- `path` - The path to the license file within the repository.
112+
- `sha` - The SHA hash of the license file.
113+
- `size` - The size of the license file in bytes.
114+
- `type` - The type of the content, (e.g., "file").
115+
- `url` - The URL to access information about the license file on GitHub.
116116

117117
The `license` block consists of:
118118

119-
* `body` - The text of the license.
120-
* `conditions` - Conditions associated with the license.
121-
* `description` - A description of the license.
122-
* `featured` - Indicates if the license is featured.
123-
* `html_url` - The URL to view the license details on GitHub.
124-
* `implementation` - Details about the implementation of the license.
125-
* `key` - A key representing the license type (e.g., "apache-2.0").
126-
* `limitations` - Limitations associated with the license.
127-
* `name` - The name of the license (e.g., "Apache License 2.0").
128-
* `permissions` - Permissions associated with the license.
129-
* `spdx_id` - The SPDX identifier for the license (e.g., "Apache-2.0").
130-
* `url` - The URL to access information about the license on GitHub.
119+
- `body` - The text of the license.
120+
- `conditions` - Conditions associated with the license.
121+
- `description` - A description of the license.
122+
- `featured` - Indicates if the license is featured.
123+
- `html_url` - The URL to view the license details on GitHub.
124+
- `implementation` - Details about the implementation of the license.
125+
- `key` - A key representing the license type (e.g., "apache-2.0").
126+
- `limitations` - Limitations associated with the license.
127+
- `name` - The name of the license (e.g., "Apache License 2.0").
128+
- `permissions` - Permissions associated with the license.
129+
- `spdx_id` - The SPDX identifier for the license (e.g., "Apache-2.0").
130+
- `url` - The URL to access information about the license on GitHub.

0 commit comments

Comments
 (0)