Skip to content

Commit 668e6ba

Browse files
authored
Merge pull request #1 from ehom/anchor_tags
Corrected and Added Anchors
2 parents 5540a69 + 7815dbc commit 668e6ba

File tree

1 file changed

+11
-9
lines changed

1 file changed

+11
-9
lines changed

README.md

+11-9
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,7 @@
1515
1. [Development - Guide for contributing to the module](#development)
1616
1. [Contributors](#contributors)
1717

18-
19-
<a id="moduledescription"></a>
18+
<a id="module-description"></a>
2019
## Module Description
2120

2221
This module provides a standard library of resources for Puppet modules. Puppet modules make heavy use of this standard library. The stdlib module adds the following resources to Puppet:
@@ -74,18 +73,20 @@ node default {
7473
* [Facts](#facts)
7574
* [Functions](#functions)
7675

77-
<a id="limitations"></a>
76+
<a id="classes"></a>
7877
### Classes
7978

79+
<a id="public-classes"></a>
8080
#### Public classes
8181

8282
The `stdlib` class has no parameters.
8383

84+
<a id="private-classes"></a>
8485
#### Private classes
8586

8687
* `stdlib::stages`: Manages a standard set of run stages for Puppet.
8788

88-
<a id="definedtypes"></a>
89+
<a id="defined-types"></a>
8990
### Defined types
9091

9192
#### `file_line`
@@ -203,7 +204,9 @@ Values: String specifying a valid Ruby character encoding.
203204

204205
Default: 'UTF-8'.
205206

206-
##### `ensure`: Specifies whether the resource is present.
207+
##### `ensure`
208+
209+
Specifies whether the resource is present.
207210

208211
Values: 'present', 'absent'.
209212

@@ -275,7 +278,7 @@ Replaces all lines matched by `match` parameter, even if `line` already exists i
275278

276279
Default value: `false`.
277280

278-
<a id="datatypes"></a>
281+
<a id="data-types"></a>
279282
### Data types
280283

281284
#### `Stdlib::Absolutepath`
@@ -1083,8 +1086,7 @@ Deletes all instances of a given element from an array or hash that match a prov
10831086
10841087
*Note:* This function is an implementation of a Ruby class and might not be UTF8 compatible. To ensure compatibility, use this function with Ruby 2.4.0 or greater.
10851088
1086-
1087-
For example
1089+
For example:
10881090
10891091
* `delete_regex(['a','b','c','b'], 'b')` returns ['a','c'].
10901092
* `delete_regex({'a' => 1,'b' => 2,'c' => 3},['b','c'])` returns {'a'=> 1}.
@@ -1908,7 +1910,7 @@ $metadata = load_module_metadata('archive')
19081910
notify { $metadata['author']: }
19091911
```
19101912
1911-
When a module's metadata file is absent, the catalog compilation fails. To avoid this failure:
1913+
When a module's metadata file is absent, the catalog compilation fails. To avoid this failure, do the following:
19121914
19131915
```
19141916
$metadata = load_module_metadata('mysql', true)

0 commit comments

Comments
 (0)