Skip to content

Commit b4b5eb2

Browse files
committed
Lint docs
1 parent b2e67c5 commit b4b5eb2

File tree

4 files changed

+10
-12
lines changed

4 files changed

+10
-12
lines changed

README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ The library provides some common tools that you might find useful when working w
77

88
> The library is under development, and you can expect braking changes along the way.
99
10-
```
10+
```text
1111
/*
1212
*
1313
* |
@@ -21,5 +21,3 @@ The library provides some common tools that you might find useful when working w
2121
```
2222

2323
To get started, refer to [library documentation](docs/1-openid.md).
24-
25-

docs/2-installation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
## OpenID Tools Library Installation
1+
# OpenID Tools Library Installation
22

33
Library can be installed by using Composer:
44

55
```shell
66
composer require simplesamlphp/openid
7-
```
7+
```

docs/3-federation.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## OpenID Federation Tools (draft 44)
1+
# OpenID Federation Tools (draft 44)
22

33
To use it, create an instance of the class `\SimpleSAML\OpenID\Federation`.
44

@@ -62,7 +62,7 @@ class Test
6262
}
6363
```
6464

65-
### Trust chain resolver
65+
## Trust Chain Resolver
6666

6767
Once you have a `\SimpleSAML\OpenID\Federation` instantiated, you can continue
6868
with using available tools. The first tool we will take a look at is the Trust
@@ -159,7 +159,7 @@ if (is_null($metadata)) {
159159
If getting metadata results in an exception, the metadata is considered invalid
160160
and is to be discarded.
161161

162-
### Additional verification of signatures
162+
## Additional Verification of Signatures
163163

164164
The whole trust chain (each entity statement) has been verified using public
165165
keys from JWKS claims in configuration / subordinate statements. As per
@@ -196,7 +196,7 @@ try {
196196

197197
```
198198

199-
### Fetching Trust Marks
199+
## Fetching Trust Marks
200200

201201
Federation tools expose Trust Mark Fetcher, which you can use to dynamically
202202
fetch or refresh (short-living) Trust Marks.
@@ -235,7 +235,7 @@ try {
235235

236236
```
237237

238-
### Validating Trust Marks
238+
## Validating Trust Marks
239239

240240
Federation tools expose Trust Mark Validator with several methods for validating
241241
Trust Marks, with the most common one being the one to validate Trust Mark for
@@ -284,4 +284,4 @@ try {
284284
return;
285285
}
286286

287-
```
287+
```

docs/4-vci.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## OpenID for Verifiable Credential Issuance (OpenID4VCI) Tools
1+
# OpenID for Verifiable Credential Issuance (OpenID4VCI) Tools
22

33
To use it, create an instance of the `\SimpleSAML\OpenID\VerifiableCredentials`
44
class.

0 commit comments

Comments
 (0)