Skip to content

Commit bc68e92

Browse files
committed
Disable code blocks
1 parent 2936d27 commit bc68e92

2 files changed

Lines changed: 16 additions & 0 deletions

File tree

  • lib/node_modules/@stdlib/_tools/remark/plugins/remark-namespace-toc/examples/fixtures

lib/node_modules/@stdlib/_tools/remark/plugins/remark-namespace-toc/examples/fixtures/asinh/README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ limitations under the License.
2626

2727
## Usage
2828

29+
<!-- run-disable -->
30+
2931
```javascript
3032
var asinh = require( '@stdlib/fastmath/special/asinh' );
3133
```
@@ -34,6 +36,8 @@ var asinh = require( '@stdlib/fastmath/special/asinh' );
3436

3537
Computes the [hyperbolic arcsine][inverse-hyperbolic] of a `number` (in radians).
3638

39+
<!-- run-disable -->
40+
3741
```javascript
3842
var v = asinh( 0.0 );
3943
// returns 0.0
@@ -67,6 +71,8 @@ v = asinh( Infinity );
6771

6872
- For large `x`, the function will overflow.
6973

74+
<!-- run-disable -->
75+
7076
```javascript
7177
var v = asinh( 1.0e200 );
7278
// returns Infinity
@@ -75,6 +81,8 @@ v = asinh( Infinity );
7581

7682
- For small `x`, the function will underflow.
7783

84+
<!-- run-disable -->
85+
7886
```javascript
7987
var v = asinh( 1.0e-50 );
8088
// returns 0.0
@@ -87,6 +95,8 @@ v = asinh( Infinity );
8795

8896
## Examples
8997

98+
<!-- run-disable -->
99+
90100
<!-- eslint no-undef: "error" -->
91101

92102
```javascript

lib/node_modules/@stdlib/_tools/remark/plugins/remark-namespace-toc/examples/fixtures/atan/README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ limitations under the License.
2626

2727
## Usage
2828

29+
<!-- run-disable -->
30+
2931
```javascript
3032
var atan = require( '@stdlib/fastmath/special/atan' );
3133
```
@@ -34,6 +36,8 @@ var atan = require( '@stdlib/fastmath/special/atan' );
3436

3537
Computes the [arctangent][arctangent] of a `number`.
3638

39+
<!-- run-disable -->
40+
3741
```javascript
3842
var v = atan( 0.0 );
3943
// returns ~0.0
@@ -56,6 +60,8 @@ v = atan( NaN );
5660

5761
## Examples
5862

63+
<!-- run-disable -->
64+
5965
<!-- eslint no-undef: "error" -->
6066

6167
```javascript

0 commit comments

Comments
 (0)