Skip to content

Commit 3964a5c

Browse files
committed
Change link identifier and do not run code blocks
1 parent e8bb0f3 commit 3964a5c

File tree

5 files changed

+18
-2
lines changed

5 files changed

+18
-2
lines changed

GOVERNANCE.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ An Institutional Partner is free to pursue funding for their work on The Project
142142

143143
## Changes
144144

145-
This is a living document and may be updated over time. Refer to the [git history for this document][git-history] to view changes.
145+
This is a living document and may be updated over time. Refer to the [git history for this document][stdlib-git-commit-log-governance] to view changes.
146146

147147
## Attribution
148148

@@ -168,7 +168,7 @@ This document may be reused under a [Creative Commons Attribution-ShareAlike 4.0
168168

169169
[cc-by-sa-4.0]: https://creativecommons.org/licenses/by-sa/4.0/
170170

171-
[git-history]: https://github.com/stdlib-js/stdlib/commits/develop/GOVERNANCE.md
171+
[stdlib-git-commit-log-governance]: https://github.com/stdlib-js/stdlib/commits/develop/GOVERNANCE.md
172172

173173
</section>
174174

lib/node_modules/@stdlib/_tools/links/create/README.md

+10
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,8 @@ var create = require( '@stdlib/_tools/links/create' );
4646

4747
Creates a link entry in a link database.
4848

49+
<!-- run-disable -->
50+
4951
```javascript
5052
var opts = {
5153
'uri': 'https://stdlib.io',
@@ -73,6 +75,8 @@ The function accepts the following `options`:
7375

7476
To specify keywords which pertain to the link, set the `keywords` option.
7577

78+
<!-- run-disable -->
79+
7680
```javascript
7781
var opts = {
7882
'uri': 'https://stdlib.io',
@@ -100,6 +104,8 @@ function done( error ) {
100104

101105
To insert the link into a particular link database, set the `database` option.
102106

107+
<!-- run-disable -->
108+
103109
```javascript
104110
var opts = {
105111
'uri': 'https://stdlib.io',
@@ -122,6 +128,8 @@ function done( error ) {
122128

123129
Synchronously inserts a link into a link database.
124130

131+
<!-- run-disable -->
132+
125133
```javascript
126134
var opts = {
127135
'uri': 'https://stdlib.io',
@@ -160,6 +168,8 @@ The method accepts the same `options` as [`create()`](#create-async) above.
160168

161169
## Examples
162170

171+
<!-- run-disable -->
172+
163173
<!-- eslint no-undef: "error" -->
164174

165175
```javascript

lib/node_modules/@stdlib/_tools/links/id2uri/README.md

+2
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,8 @@ The function accepts the following `options`:
6464

6565
To use an alternative link database, set the `database` option.
6666

67+
<!-- run-disable -->
68+
6769
```javascript
6870
var opts = {
6971
'database': './path/to/link/database/json'

lib/node_modules/@stdlib/_tools/links/uri2id/README.md

+2
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,8 @@ The function accepts the following `options`:
6464

6565
To use an alternative link database, set the `database` option.
6666

67+
<!-- run-disable -->
68+
6769
```javascript
6870
var opts = {
6971
'database': './path/to/link/database/json'

lib/node_modules/@stdlib/_tools/links/validate/README.md

+2
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,8 @@ The function accepts the following `options`:
8080

8181
To use an alternative link database, set the `database` option.
8282

83+
<!-- run-disable -->
84+
8385
```javascript
8486
var opts = {
8587
'database': './path/to/link/database/json'

0 commit comments

Comments
 (0)