Skip to content

Commit 9e147dd

Browse files
docs: put backticks in code-like names (#53)
1 parent d11948e commit 9e147dd

31 files changed

+42
-40
lines changed

docs/Features/Comparison/Addition.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
sidebar_position: 10
33
---
44

5-
[Check options and parameters of add method](https://image-js.github.io/image-js-typescript/classes/Image.html#add 'github.io link')
5+
[Check options and parameters of `add` method](https://image-js.github.io/image-js-typescript/classes/Image.html#add 'github.io link')
66

77
:::caution
88
This method works only with images.
99
:::
1010

11-
Add method, opposed to [subtraction](./Subtraction.md 'internal link on subtract'), takes another Image and makes an addition between each respective pixel value.
11+
`add` method, opposed to [subtraction](./Subtraction.md 'internal link on subtract'), takes another Image and makes an addition between each respective pixel value.
1212
It works like this:
1313

1414
```ts

docs/Features/Comparison/Comparison.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ The specific reasons for comparing images depend on the application and the desi
77

88
### Methods that can be applied on Images only
99

10-
- [add](./Addition.md 'internal link on add')
10+
- [`add`](./Addition.md 'internal link on add')
1111

12-
- [hypotenuse](./Hypotenuse.md 'internal link on hypotenuse')
12+
- [`hypotenuse`](./Hypotenuse.md 'internal link on hypotenuse')
1313

1414
### Methods that can be applied on Masks only
1515

@@ -19,4 +19,4 @@ The specific reasons for comparing images depend on the application and the desi
1919

2020
### Methods that can be applied on Images and Masks
2121

22-
- [subtract](./Subtraction.md 'internal link on subtract')
22+
- [`subtract`](./Subtraction.md 'internal link on subtract')

docs/Features/Comparison/Hypotenuse.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
sidebar_position: 30
33
---
44

5-
[Check options and parameters of hypotenuse method](https://image-js.github.io/image-js-typescript/classes/Image.html#hypotenuse 'github.io link')
5+
[Check options and parameters of `hypotenuse` method](https://image-js.github.io/image-js-typescript/classes/Image.html#hypotenuse 'github.io link')
66

77
:::caution
88
This method works only with images.

docs/Features/Comparison/Logical conjunction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
sidebar_position: 100
33
---
44

5-
[Check options and parameters of and method](https://image-js.github.io/image-js-typescript/classes/Mask.html#and 'github.io link')
5+
[Check options and parameters of `and` method](https://image-js.github.io/image-js-typescript/classes/Mask.html#and 'github.io link')
66

77
:::caution
88
This method works only with masks.

docs/Features/Comparison/Logical disjunction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
sidebar_position: 110
33
---
44

5-
[Check options and parameters of or method](https://image-js.github.io/image-js-typescript/classes/Mask.html#or 'github.io link')
5+
[Check options and parameters of `or` method](https://image-js.github.io/image-js-typescript/classes/Mask.html#or 'github.io link')
66

77
:::caution
88
This method works only with masks

docs/Features/Comparison/Subtraction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
sidebar_position: 20
33
---
44

5-
[Check options and parameters of subtract method](https://image-js.github.io/image-js-typescript/classes/Image.html#subtract 'github.io link')
5+
[Check options and parameters of `subtract` method](https://image-js.github.io/image-js-typescript/classes/Image.html#subtract 'github.io link')
66

77
Method called `subtract`, as the name suggests, takes another Image(or Mask) and makes a subtraction between each respective bit.
88
It works like this:

docs/Features/Fill.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
[Check options and parameters of `fill` method](https://image-js.github.io/image-js-typescript/classes/Image.html#fill 'github.io link')
2+
13
Fill method fills the whole Mask with a designated value.
24
It works like this:
35

@@ -9,4 +11,4 @@ mask.fill(1);
911

1012
### Parameters and default values
1113

12-
- [`value`](https://image-js.github.io/image-js-typescript/classes/Mask.html#fill 'github.io link')
14+
- `value`

docs/Features/Filters/Blur.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ sidebar_position: 30
44

55
import BlurDemo from './blur.demo.tsx'
66

7-
[Check options and parameters of blur method](https://image-js.github.io/image-js-typescript/classes/Image.html#blur 'link on github io')
7+
[Check options and parameters of `blur` method](https://image-js.github.io/image-js-typescript/classes/Image.html#blur 'link on github io')
88

99
:::caution
1010
This method works only with images.

docs/Features/Filters/Derivative.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ sidebar_position: 70
55
import DerivativeDemo from './derivative.demo.tsx'
66
import GradientDemo from './gradient.demo.tsx'
77

8-
[Check options and parameters of derivative method](https://image-js.github.io/image-js-typescript/classes/Image.html#derivativeFilter 'link on github io')
8+
[Check options and parameters of `derivative` method](https://image-js.github.io/image-js-typescript/classes/Image.html#derivativeFilter 'link on github io')
99

1010
:::caution
1111
This method works only with images.

docs/Features/Filters/Gaussian Blur.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ sidebar_position: 40
44

55
import GaussianBlurDemo from './gaussianBlur.demo.tsx'
66

7-
[Check options and parameters of gaussian blur method](https://image-js.github.io/image-js-typescript/classes/Image.html#gaussianBlur 'link on github io')
7+
[Check options and parameters of `gaussianBlur` method](https://image-js.github.io/image-js-typescript/classes/Image.html#gaussianBlur 'link on github io')
88

99
:::caution
1010
This method works only with images.

0 commit comments

Comments
 (0)