Skip to content

Commit f7306dc

Browse files
authored
Fix/Fix broken documentation links. (#489)
1 parent 9ee8b78 commit f7306dc

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+88
-88
lines changed

src/actions/adjust.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export type IAdjustAction = FillLightAction
3737
* @memberOf Actions.Adjust
3838
* @description Blends an image with one or more tint colors at a specified intensity. </br>
3939
* You can optionally equalize colors before tinting and specify gradient blend positioning per color.</br>
40-
* <b>Learn more:</b> {@link https://cloudinary.com/documentation/image_transformations#tint_effects | Deliver selected layers of a PSD image}
40+
* <b>Learn more:</b> {@link https://cloudinary.com/documentation/image_transformations#tint_effects|Deliver selected layers of a PSD image}
4141
* @param {string} value The full tint effect value, provided as a string.
4242
* @return {Actions.Effect.SimpleEffectAction}
4343
*/
@@ -63,7 +63,7 @@ function brightness(level?:number): EffectActionWithLevel {
6363
* @memberOf Actions.Adjust
6464
* @description
6565
* Enhances an image to its best visual quality with the Viesus Automatic Image Enhancement add-on.</br>
66-
* <b>Learn more:</b> {@link https://cloudinary.com/documentation/viesus_automatic_image_enhancement_addon | Viesus Automatic Image Enhancement.}
66+
* <b>Learn more:</b> {@link https://cloudinary.com/documentation/viesus_automatic_image_enhancement_addon|Viesus Automatic Image Enhancement.}
6767
* @return {Actions.Adjust.ViesusCorrectAdjustAction}
6868
*/
6969
function viesusCorrect(): ViesusCorrectAdjustAction {
@@ -286,7 +286,7 @@ function improve(): ImproveAction {
286286
* @description
287287
* Maps an input color and those similar to the input color to corresponding shades of a specified output color, taking luminosity and chroma into account, in order to recolor an object in a natural way.</br>
288288
* More highly saturated input colors usually give the best results. It is recommended to avoid input colors approaching white, black, or gray.
289-
* <b>Learn more:</b> {@link https://cloudinary.com/documentation/image_transformations#replace_color_effect | Replace colors example}
289+
* <b>Learn more:</b> {@link https://cloudinary.com/documentation/image_transformations#replace_color_effect|Replace colors example}
290290
* @param {string} toColor
291291
* @return {Actions.Adjust.ReplaceColorAction}
292292
*/

src/actions/adjust/ImproveAction.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import {IActionModel} from "../../internal/models/IActionModel.js";
77

88
/**
99
* @description Defines how to improve an image by automatically adjusting image colors, contrast and brightness.</br>
10-
* <b>Learn more:</b> {@link https://cloudinary.com/documentation/image_transformations#image_improvement_effects | Image improvement effects}
10+
* <b>Learn more:</b> {@link https://cloudinary.com/documentation/image_transformations#image_improvement_effects|Image improvement effects}
1111
* @memberOf Actions.Adjust
1212
*/
1313
class ImproveAction extends Action {

src/actions/adjust/ReplaceColorAction.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import {Qualifier} from "../../internal/qualifier/Qualifier.js";
77
* Maps an input color and those similar to the input color to corresponding shades of a specified output color, taking luminosity and chroma into account, in order to recolor objects in your image in a natural way.</br>
88
* More highly saturated input colors usually give the best results. It is recommended to avoid input colors approaching white, black, or gray.</br>
99
*
10-
* <b>Learn more:</b> {@link https://cloudinary.com/documentation/image_transformations#replace_color_effect | Replace colors example}
10+
* <b>Learn more:</b> {@link https://cloudinary.com/documentation/image_transformations#replace_color_effect|Replace colors example}
1111
* @memberOf Actions.Adjust
1212
*/
1313
class ReplaceColorAction extends Action {

src/actions/adjust/simple/ViesusCorrectAdjustAction.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import {Qualifier} from "../../../internal/qualifier/Qualifier.js";
33

44
/**
55
* Enhances an image to its best visual quality with the Viesus Automatic Image Enhancement add-on.</br>
6-
* <b>Learn more:</b> {@link https://cloudinary.com/documentation/viesus_automatic_image_enhancement_addon | Viesus Automatic Image Enhancement.}
6+
* <b>Learn more:</b> {@link https://cloudinary.com/documentation/viesus_automatic_image_enhancement_addon|Viesus Automatic Image Enhancement.}
77
* @memberOf Actions.Adjust
88
*/
99
class ViesusCorrectAdjustAction extends Action {

src/actions/border.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import RoundCornersAction from "./roundCorners/RoundCornersAction.js";
1010
* @description Adds a solid border around an image or video.
1111
*
1212
* <b>Learn more:</b>
13-
* {@link https://cloudinary.com/documentation/image_transformations#adding_image_borders | Adding image borders}
13+
* {@link https://cloudinary.com/documentation/image_transformations#adding_image_borders|Adding image borders}
1414
* @memberOf Actions
1515
* @namespace Border
1616
* @example

src/actions/conditional.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ class ConditionalAction extends Action{
7777
* @summary action
7878
* @memberOf Actions.Conditional
7979
* @description Sets up a conditional transformation with expression.
80-
* Learn more: {@link https://cloudinary.com/documentation/conditional_transformations | Conditional transformations}
80+
* Learn more: {@link https://cloudinary.com/documentation/conditional_transformations|Conditional transformations}
8181
*
8282
* @param {string} expression The condition to meet in order to apply the transformation.
8383
* @param {SDK.Transformation} tx The transformation to conditionally apply

src/actions/customFunction.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* Calls a custom function. </br>
3-
* Learn more: {@link https://cloudinary.com/documentation/custom_functions | Custom functions}
3+
* Learn more: {@link https://cloudinary.com/documentation/custom_functions|Custom functions}
44
* @memberOf Actions
55
* @namespace CustomFunction
66
* @example
@@ -25,7 +25,7 @@ import RemoteAction from "./customFunction/RemoteAction.js";
2525
/**
2626
* @summary action
2727
* @description - Calls a custom function. </br>
28-
* For more information about remote custom functions see {@link https://cloudinary.com/documentation/custom_functions#remote_functions | the documentation}
28+
* For more information about remote custom functions see {@link https://cloudinary.com/documentation/custom_functions#remote_functions|the documentation}
2929
* @param {string} path - Specifies the URL of the remote custom function.
3030
* @memberOf Actions.CustomFunction
3131
* @return {Actions.CustomFunctionAction}
@@ -38,7 +38,7 @@ function remote(path:string): RemoteAction {
3838
/**
3939
* @summary action
4040
* @description - Calls a custom function. </br>
41-
* For more information about wasm custom functions see {@link https://cloudinary.com/documentation/custom_functions#webassembly_functions | the documentation}
41+
* For more information about wasm custom functions see {@link https://cloudinary.com/documentation/custom_functions#webassembly_functions|the documentation}
4242
* @param {string} publicID - Specifies the publicID of the custom function stored in Cloudinary
4343
* @memberOf Actions.CustomFunction
4444
* @return {Actions.CustomFunctionAction}

src/actions/delivery.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ export type IDeliveryAction = DeliveryAction | DeliveryColorSpaceAction | Delive
2424
* @description Defines the format of the delivered asset.
2525
*
2626
* <b>Learn more:</b>
27-
* {@link https://cloudinary.com/documentation/image_transformations#image_format_support | Image formats}
28-
* {@link https://cloudinary.com/documentation/video_manipulation_and_delivery#transcoding_video_to_other_formats | Video formats}
27+
* {@link https://cloudinary.com/documentation/image_transformations#image_format_support|Image formats}
28+
* {@link https://cloudinary.com/documentation/video_manipulation_and_delivery#transcoding_video_to_other_formats|Video formats}
2929
*
3030
* @memberOf Actions.Delivery
3131
* @param {string} format The file format. For a list of supported format types see {@link Qualifiers.Format| format types} for
@@ -71,8 +71,8 @@ function dpr(dpr: string|number):DeliveryAction {
7171
* @summary action
7272
* @description Controls the quality of the delivered image or video.
7373
*
74-
* <b>Learn more:</b> {@link https://cloudinary.com/documentation/image_optimization#how_to_optimize_image_quality | Image quality}
75-
* {@link https://cloudinary.com/documentation/video_manipulation_and_delivery#quality_control | Video quality}
74+
* <b>Learn more:</b> {@link https://cloudinary.com/documentation/image_optimization#how_to_optimize_image_quality|Image quality}
75+
* {@link https://cloudinary.com/documentation/video_manipulation_and_delivery#quality_control|Video quality}
7676
* @memberOf Actions.Delivery
7777
* @param {QualityTypes | string | number | Qualifiers.Quality} qualityType For a list of supported quality types see
7878
* {@link Qualifiers.Quality| quality types} for

src/actions/delivery/DeliveryQualityAction.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ class DeliveryQualityAction extends DeliveryAction {
2424

2525
/**
2626
* Selet the Chroma sub sampling</br>
27-
* <b>Learn more</b>: {@link https://cloudinary.com/documentation/image_transformations#toggling_chroma_subsampling | Toggling chroma subsampling}
27+
* <b>Learn more</b>: {@link https://cloudinary.com/documentation/image_transformations#toggling_chroma_subsampling|Toggling chroma subsampling}
2828
* @param {420 | 444 | number} type The chroma sub sampling type
2929
*/
3030
chromaSubSampling(type: 420 | 444 | number): this {

src/actions/effect.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ function outline(): EffectOutline {
136136
/**
137137
* @summary action
138138
* @description Applies a complex deep learning neural network algorithm that extracts artistic styles from a source image and applies them to the content of a target photograph.<br/>
139-
* <b>Learn more:</b> {@link https://cloudinary.com/documentation/neural_artwork_style_transfer_addon | Neural Artwork Style Transfer}
139+
* <b>Learn more:</b> {@link https://cloudinary.com/documentation/neural_artwork_style_transfer_addon|Neural Artwork Style Transfer}
140140
* @memberOf Actions.Effect
141141
* @param {ImageSource} imageSource `import {image} from '@cloudinary/url-gen/qualifiers/sources`
142142
* @return {Actions.Effect.StyleTransfer}
@@ -429,7 +429,7 @@ function pixelate(squareSize?: number): Pixelate {
429429
* @summary action
430430
* @description Makes the background of an image transparent (or solid white for JPGs).</br>
431431
* Use when the background is a uniform color.
432-
* {@link https://cloudinary.com/documentation/transformation_reference#e_bgremoval | Background Removal}
432+
* {@link https://cloudinary.com/documentation/transformation_reference#e_bgremoval|Background Removal}
433433
*
434434
* @memberOf Actions.Effect
435435
* @return {Actions.Effect.RemoveBackgroundAction}

0 commit comments

Comments
 (0)