Skip to content

Commit 759dcb5

Browse files
committed
Update equation src URLs and disable lint rule
1 parent a693d6c commit 759dcb5

File tree

12 files changed

+23
-1
lines changed

12 files changed

+23
-1
lines changed

lib/node_modules/@stdlib/constants/float64/catalan/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ limitations under the License.
2929
<!-- <equation class="equation" label="eq:catalan_constant" align="center" raw="C = \sum_{n=0}^{\infty} \frac{(-1)^{n}}{(2n+1)^2} = \frac{1}{1^2} - \frac{1}{3^2} + \frac{1}{5^2} - \frac{1}{7^2} + \cdots" alt="Catalan's constant"> -->
3030

3131
<div class="equation" align="center" data-raw-text="C = \sum_{n=0}^{\infty} \frac{(-1)^{n}}{(2n+1)^2} = \frac{1}{1^2} - \frac{1}{3^2} + \frac{1}{5^2} - \frac{1}{7^2} + \cdots" data-equation="eq:catalan_constant">
32-
<img src="https://cdn.jsdelivr.net/gh/stdlib-js/stdlib@7e0a95722efd9c771b129597380c63dc6715508b/lib/node_modules/@stdlib/constants/float64/catalan/docs/img/equation_catalan_constant.svg" alt="Catalan's constant">
32+
<img src="https://cdn.jsdelivr.net/gh/stdlib-js/stdlib@5d87cc7cb2c58aeb732872f89562d2c89571cc8a/lib/node_modules/@stdlib/constants/float64/catalan/docs/img/equation_catalan_constant.svg" alt="Catalan's constant">
3333
<br>
3434
</div>
3535

lib/node_modules/@stdlib/constants/float64/high-word-exponent-mask/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@ var FLOAT64_HIGH_WORD_EXPONENT_MASK = require( '@stdlib/constants/float64/high-w
3636

3737
High word mask for the exponent of a [double-precision floating-point number][ieee754].
3838

39+
<!-- eslint-disable id-length -->
40+
3941
```javascript
4042
// 0x7ff00000 = 2146435072 => 0 11111111111 00000000000000000000
4143
var bool = ( FLOAT64_HIGH_WORD_EXPONENT_MASK === 0x7ff00000 );

lib/node_modules/@stdlib/constants/float64/high-word-significand-mask/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@ var FLOAT64_HIGH_WORD_SIGNIFICAND_MASK = require( '@stdlib/constants/float64/hig
3636

3737
High word mask for the significand of a [double-precision floating-point number][ieee754].
3838

39+
<!-- eslint-disable id-length -->
40+
3941
```javascript
4042
// 0x000fffff = 1048575 => 0 00000000000 11111111111111111111
4143
var bool = ( FLOAT64_HIGH_WORD_SIGNIFICAND_MASK === 0x000fffff );

lib/node_modules/@stdlib/constants/float64/max-base10-exponent-subnormal/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@ var FLOAT64_MAX_BASE10_EXPONENT_SUBNORMAL = require( '@stdlib/constants/float64/
3636

3737
The maximum base 10 exponent for a subnormal [double-precision floating-point number][ieee754].
3838

39+
<!-- eslint-disable id-length -->
40+
3941
```javascript
4042
var bool = ( FLOAT64_MAX_BASE10_EXPONENT_SUBNORMAL === -308 );
4143
// returns true

lib/node_modules/@stdlib/constants/float64/max-base10-exponent/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@ var FLOAT64_MAX_BASE10_EXPONENT = require( '@stdlib/constants/float64/max-base10
3636

3737
The maximum base 10 exponent for a [double-precision floating-point number][ieee754].
3838

39+
<!-- eslint-disable id-length -->
40+
3941
```javascript
4042
var bool = ( FLOAT64_MAX_BASE10_EXPONENT === 308 );
4143
// returns true

lib/node_modules/@stdlib/constants/float64/max-base2-exponent-subnormal/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@ var FLOAT64_MAX_BASE2_EXPONENT_SUBNORMAL = require( '@stdlib/constants/float64/m
3636

3737
The maximum biased base 2 exponent for a subnormal [double-precision floating-point number][ieee754].
3838

39+
<!-- eslint-disable id-length -->
40+
3941
```javascript
4042
var bool = ( FLOAT64_MAX_BASE2_EXPONENT_SUBNORMAL === -1023 );
4143
// returns true

lib/node_modules/@stdlib/constants/float64/max-base2-exponent/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@ var FLOAT64_MAX_BASE2_EXPONENT = require( '@stdlib/constants/float64/max-base2-e
3636

3737
The maximum biased base 2 exponent for a [double-precision floating-point number][ieee754].
3838

39+
<!-- eslint-disable id-length -->
40+
3941
```javascript
4042
var bool = ( FLOAT64_MAX_BASE2_EXPONENT === 1023 );
4143
// returns true

lib/node_modules/@stdlib/constants/float64/max-safe-nth-fibonacci/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@ var FLOAT64_MAX_SAFE_NTH_FIBONACCI = require( '@stdlib/constants/float64/max-saf
3636

3737
The maximum [safe][safe-integers] nth [Fibonacci number][fibonacci-number] when stored in [double-precision floating-point][ieee754] format.
3838

39+
<!-- eslint-disable id-length -->
40+
3941
```javascript
4042
var bool = ( FLOAT64_MAX_SAFE_NTH_FIBONACCI === 78 );
4143
// returns true

lib/node_modules/@stdlib/constants/float64/min-base10-exponent-subnormal/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@ var FLOAT64_MIN_BASE10_EXPONENT_SUBNORMAL = require( '@stdlib/constants/float64/
3636

3737
The minimum base 10 exponent for a subnormal [double-precision floating-point number][ieee754].
3838

39+
<!-- eslint-disable id-length -->
40+
3941
```javascript
4042
var bool = ( FLOAT64_MIN_BASE10_EXPONENT_SUBNORMAL === -324 );
4143
// returns true

lib/node_modules/@stdlib/constants/float64/min-base10-exponent/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@ var FLOAT64_MIN_BASE10_EXPONENT = require( '@stdlib/constants/float64/min-base10
3636

3737
The minimum base 10 exponent for a normal [double-precision floating-point number][ieee754].
3838

39+
<!-- eslint-disable id-length -->
40+
3941
```javascript
4042
var bool = ( FLOAT64_MIN_BASE10_EXPONENT === -308 );
4143
// returns true

lib/node_modules/@stdlib/constants/float64/min-base2-exponent-subnormal/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@ var FLOAT64_MIN_BASE2_EXPONENT_SUBNORMAL = require( '@stdlib/constants/float64/m
3636

3737
The minimum biased base 2 exponent for a subnormal [double-precision floating-point number][ieee754].
3838

39+
<!-- eslint-disable id-length -->
40+
3941
```javascript
4042
var bool = ( FLOAT64_MIN_BASE2_EXPONENT_SUBNORMAL === -1074 );
4143
// returns true

lib/node_modules/@stdlib/constants/float64/min-base2-exponent/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@ var FLOAT64_MIN_BASE2_EXPONENT = require( '@stdlib/constants/float64/min-base2-e
3636

3737
The minimum biased base 2 exponent for a normal [double-precision floating-point number][ieee754].
3838

39+
<!-- eslint-disable id-length -->
40+
3941
```javascript
4042
var bool = ( FLOAT64_MIN_BASE2_EXPONENT === -1022 );
4143
// returns true

0 commit comments

Comments
 (0)