Skip to content

Commit f05e7ef

Browse files
committed
fix for markdown
1 parent 9421bab commit f05e7ef

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ composer.phar require simplesamlphp/simplesamlphp-module-ldap:dev-master
2020
```
2121

2222
where `dev-master` instructs Composer to install the `master` branch from the
23-
Git repository. See the [releases][releases]
23+
Git repository. See the [releases](https://github.com/simplesamlphp/simplesamlphp-module-ldap/releases)
2424
available if you want to use a stable version of the module.
2525

2626
Next thing you need to do is to enable the module: in `config.php`,

docs/ldap.md

+8-6
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ authentication source:
5555

5656
/**
5757
* The LDAP-options to pass when setting up a connection
58-
* See [Symfony documentation][1]
58+
* See [Symfony documentation]
5959
*/
6060
'options' => [
6161
/**
@@ -138,8 +138,8 @@ authentication source:
138138
* Additional filters that must match for the entire LDAP search to
139139
* be true.
140140
*
141-
* This should be a single string conforming to [RFC 1960][2]
142-
* and [RFC 2544][3]. The string is appended to the search attributes
141+
* This should be a single string conforming to [RFC 1960]
142+
* and [RFC 2544]. The string is appended to the search attributes
143143
*/
144144
'search.filter' => '(&(objectClass=Person)(|(sn=Doe)(cn=John *)))',
145145

@@ -153,9 +153,11 @@ authentication source:
153153
],
154154
```
155155

156-
[1]: https://github.com/symfony/symfony/blob/5.4/src/Symfony/Component/Ldap/Adapter/ExtLdap/ConnectionOptions.php
157-
[2]: https://datatracker.ietf.org/doc/html/rfc1960
158-
[3]: https://datatracker.ietf.org/doc/html/rfc2544
156+
See:
157+
158+
- [Symfony documentation](https://github.com/symfony/symfony/blob/5.4/src/Symfony/Component/Ldap/Adapter/ExtLdap/ConnectionOptions.php)
159+
- [RFC 1960](https://datatracker.ietf.org/doc/html/rfc1960)
160+
- [RFC 2544](https://datatracker.ietf.org/doc/html/rfc2544)
159161

160162
You should update the name of this authentication source
161163
(`example-ldap`) to have a name which makes sense to your organization.

0 commit comments

Comments
 (0)