diff --git a/src/actions/adjust.ts b/src/actions/adjust.ts index 34a0010c..6b7aed03 100644 --- a/src/actions/adjust.ts +++ b/src/actions/adjust.ts @@ -37,7 +37,7 @@ export type IAdjustAction = FillLightAction * @memberOf Actions.Adjust * @description Blends an image with one or more tint colors at a specified intensity.
* You can optionally equalize colors before tinting and specify gradient blend positioning per color.
- * Learn more: {@link https://cloudinary.com/documentation/image_transformations#tint_effects | Deliver selected layers of a PSD image} + * Learn more: {@link https://cloudinary.com/documentation/image_transformations#tint_effects|Deliver selected layers of a PSD image} * @param {string} value The full tint effect value, provided as a string. * @return {Actions.Effect.SimpleEffectAction} */ @@ -63,7 +63,7 @@ function brightness(level?:number): EffectActionWithLevel { * @memberOf Actions.Adjust * @description * Enhances an image to its best visual quality with the Viesus Automatic Image Enhancement add-on.
- * Learn more: {@link https://cloudinary.com/documentation/viesus_automatic_image_enhancement_addon | Viesus Automatic Image Enhancement.} + * Learn more: {@link https://cloudinary.com/documentation/viesus_automatic_image_enhancement_addon|Viesus Automatic Image Enhancement.} * @return {Actions.Adjust.ViesusCorrectAdjustAction} */ function viesusCorrect(): ViesusCorrectAdjustAction { @@ -286,7 +286,7 @@ function improve(): ImproveAction { * @description * 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.
* More highly saturated input colors usually give the best results. It is recommended to avoid input colors approaching white, black, or gray. - * Learn more: {@link https://cloudinary.com/documentation/image_transformations#replace_color_effect | Replace colors example} + * Learn more: {@link https://cloudinary.com/documentation/image_transformations#replace_color_effect|Replace colors example} * @param {string} toColor * @return {Actions.Adjust.ReplaceColorAction} */ diff --git a/src/actions/adjust/ImproveAction.ts b/src/actions/adjust/ImproveAction.ts index c38ff87a..ed39ec54 100644 --- a/src/actions/adjust/ImproveAction.ts +++ b/src/actions/adjust/ImproveAction.ts @@ -7,7 +7,7 @@ import {IActionModel} from "../../internal/models/IActionModel.js"; /** * @description Defines how to improve an image by automatically adjusting image colors, contrast and brightness.
- * Learn more: {@link https://cloudinary.com/documentation/image_transformations#image_improvement_effects | Image improvement effects} + * Learn more: {@link https://cloudinary.com/documentation/image_transformations#image_improvement_effects|Image improvement effects} * @memberOf Actions.Adjust */ class ImproveAction extends Action { diff --git a/src/actions/adjust/ReplaceColorAction.ts b/src/actions/adjust/ReplaceColorAction.ts index f4e03499..a126fc3a 100644 --- a/src/actions/adjust/ReplaceColorAction.ts +++ b/src/actions/adjust/ReplaceColorAction.ts @@ -7,7 +7,7 @@ import {Qualifier} from "../../internal/qualifier/Qualifier.js"; * 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.
* More highly saturated input colors usually give the best results. It is recommended to avoid input colors approaching white, black, or gray.
* - * Learn more: {@link https://cloudinary.com/documentation/image_transformations#replace_color_effect | Replace colors example} + * Learn more: {@link https://cloudinary.com/documentation/image_transformations#replace_color_effect|Replace colors example} * @memberOf Actions.Adjust */ class ReplaceColorAction extends Action { diff --git a/src/actions/adjust/simple/ViesusCorrectAdjustAction.ts b/src/actions/adjust/simple/ViesusCorrectAdjustAction.ts index d510255b..bd949e18 100644 --- a/src/actions/adjust/simple/ViesusCorrectAdjustAction.ts +++ b/src/actions/adjust/simple/ViesusCorrectAdjustAction.ts @@ -3,7 +3,7 @@ import {Qualifier} from "../../../internal/qualifier/Qualifier.js"; /** * Enhances an image to its best visual quality with the Viesus Automatic Image Enhancement add-on.
- * Learn more: {@link https://cloudinary.com/documentation/viesus_automatic_image_enhancement_addon | Viesus Automatic Image Enhancement.} + * Learn more: {@link https://cloudinary.com/documentation/viesus_automatic_image_enhancement_addon|Viesus Automatic Image Enhancement.} * @memberOf Actions.Adjust */ class ViesusCorrectAdjustAction extends Action { diff --git a/src/actions/border.ts b/src/actions/border.ts index d502440c..ae283ac3 100644 --- a/src/actions/border.ts +++ b/src/actions/border.ts @@ -10,7 +10,7 @@ import RoundCornersAction from "./roundCorners/RoundCornersAction.js"; * @description Adds a solid border around an image or video. * * Learn more: - * {@link https://cloudinary.com/documentation/image_transformations#adding_image_borders | Adding image borders} + * {@link https://cloudinary.com/documentation/image_transformations#adding_image_borders|Adding image borders} * @memberOf Actions * @namespace Border * @example diff --git a/src/actions/conditional.ts b/src/actions/conditional.ts index f56c583f..f477b45c 100644 --- a/src/actions/conditional.ts +++ b/src/actions/conditional.ts @@ -77,7 +77,7 @@ class ConditionalAction extends Action{ * @summary action * @memberOf Actions.Conditional * @description Sets up a conditional transformation with expression. - * Learn more: {@link https://cloudinary.com/documentation/conditional_transformations | Conditional transformations} + * Learn more: {@link https://cloudinary.com/documentation/conditional_transformations|Conditional transformations} * * @param {string} expression The condition to meet in order to apply the transformation. * @param {SDK.Transformation} tx The transformation to conditionally apply diff --git a/src/actions/customFunction.ts b/src/actions/customFunction.ts index fe795bb0..ffecf4c0 100644 --- a/src/actions/customFunction.ts +++ b/src/actions/customFunction.ts @@ -1,6 +1,6 @@ /** * Calls a custom function.
- * Learn more: {@link https://cloudinary.com/documentation/custom_functions | Custom functions} + * Learn more: {@link https://cloudinary.com/documentation/custom_functions|Custom functions} * @memberOf Actions * @namespace CustomFunction * @example @@ -25,7 +25,7 @@ import RemoteAction from "./customFunction/RemoteAction.js"; /** * @summary action * @description - Calls a custom function.
- * For more information about remote custom functions see {@link https://cloudinary.com/documentation/custom_functions#remote_functions | the documentation} + * For more information about remote custom functions see {@link https://cloudinary.com/documentation/custom_functions#remote_functions|the documentation} * @param {string} path - Specifies the URL of the remote custom function. * @memberOf Actions.CustomFunction * @return {Actions.CustomFunctionAction} @@ -38,7 +38,7 @@ function remote(path:string): RemoteAction { /** * @summary action * @description - Calls a custom function.
- * For more information about wasm custom functions see {@link https://cloudinary.com/documentation/custom_functions#webassembly_functions | the documentation} + * For more information about wasm custom functions see {@link https://cloudinary.com/documentation/custom_functions#webassembly_functions|the documentation} * @param {string} publicID - Specifies the publicID of the custom function stored in Cloudinary * @memberOf Actions.CustomFunction * @return {Actions.CustomFunctionAction} diff --git a/src/actions/delivery.ts b/src/actions/delivery.ts index 34706c80..f0eb1376 100644 --- a/src/actions/delivery.ts +++ b/src/actions/delivery.ts @@ -24,8 +24,8 @@ export type IDeliveryAction = DeliveryAction | DeliveryColorSpaceAction | Delive * @description Defines the format of the delivered asset. * * Learn more: - * {@link https://cloudinary.com/documentation/image_transformations#image_format_support | Image formats} - * {@link https://cloudinary.com/documentation/video_manipulation_and_delivery#transcoding_video_to_other_formats | Video formats} + * {@link https://cloudinary.com/documentation/image_transformations#image_format_support|Image formats} + * {@link https://cloudinary.com/documentation/video_manipulation_and_delivery#transcoding_video_to_other_formats|Video formats} * * @memberOf Actions.Delivery * @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 { * @summary action * @description Controls the quality of the delivered image or video. * - * Learn more: {@link https://cloudinary.com/documentation/image_optimization#how_to_optimize_image_quality | Image quality} - * {@link https://cloudinary.com/documentation/video_manipulation_and_delivery#quality_control | Video quality} + * Learn more: {@link https://cloudinary.com/documentation/image_optimization#how_to_optimize_image_quality|Image quality} + * {@link https://cloudinary.com/documentation/video_manipulation_and_delivery#quality_control|Video quality} * @memberOf Actions.Delivery * @param {QualityTypes | string | number | Qualifiers.Quality} qualityType For a list of supported quality types see * {@link Qualifiers.Quality| quality types} for diff --git a/src/actions/delivery/DeliveryQualityAction.ts b/src/actions/delivery/DeliveryQualityAction.ts index 1b1d6047..a8c9bacd 100644 --- a/src/actions/delivery/DeliveryQualityAction.ts +++ b/src/actions/delivery/DeliveryQualityAction.ts @@ -24,7 +24,7 @@ class DeliveryQualityAction extends DeliveryAction { /** * Selet the Chroma sub sampling
- * Learn more: {@link https://cloudinary.com/documentation/image_transformations#toggling_chroma_subsampling | Toggling chroma subsampling} + * Learn more: {@link https://cloudinary.com/documentation/image_transformations#toggling_chroma_subsampling|Toggling chroma subsampling} * @param {420 | 444 | number} type The chroma sub sampling type */ chromaSubSampling(type: 420 | 444 | number): this { diff --git a/src/actions/effect.ts b/src/actions/effect.ts index 3777a739..c04711fb 100644 --- a/src/actions/effect.ts +++ b/src/actions/effect.ts @@ -136,7 +136,7 @@ function outline(): EffectOutline { /** * @summary action * @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.
- * Learn more: {@link https://cloudinary.com/documentation/neural_artwork_style_transfer_addon | Neural Artwork Style Transfer} + * Learn more: {@link https://cloudinary.com/documentation/neural_artwork_style_transfer_addon|Neural Artwork Style Transfer} * @memberOf Actions.Effect * @param {ImageSource} imageSource `import {image} from '@cloudinary/url-gen/qualifiers/sources` * @return {Actions.Effect.StyleTransfer} @@ -429,7 +429,7 @@ function pixelate(squareSize?: number): Pixelate { * @summary action * @description Makes the background of an image transparent (or solid white for JPGs).
* Use when the background is a uniform color. - * {@link https://cloudinary.com/documentation/transformation_reference#e_bgremoval | Background Removal} + * {@link https://cloudinary.com/documentation/transformation_reference#e_bgremoval|Background Removal} * * @memberOf Actions.Effect * @return {Actions.Effect.RemoveBackgroundAction} diff --git a/src/actions/extract.ts b/src/actions/extract.ts index f5979ebf..a7c23f62 100644 --- a/src/actions/extract.ts +++ b/src/actions/extract.ts @@ -76,7 +76,7 @@ class ExtractAction extends Action { /** * @summary action * @description Extracts an image containing only specified layers of a Photoshop image. - * Learn more: {@link https://cloudinary.com/documentation/paged_and_layered_media#deliver_selected_layers_of_a_psd_image | Deliver selected layers of a PSD image} + * Learn more: {@link https://cloudinary.com/documentation/paged_and_layered_media#deliver_selected_layers_of_a_psd_image|Deliver selected layers of a PSD image} * @memberOf Actions.Extract * @return {Actions.Extract.ExtractAction} */ diff --git a/src/actions/psdTools.ts b/src/actions/psdTools.ts index ee99e30c..d495016c 100644 --- a/src/actions/psdTools.ts +++ b/src/actions/psdTools.ts @@ -5,7 +5,7 @@ import {SmartObjectAction} from "./psdTools/SmartObjectAction.js"; /** * @namespace PSDTools * @description Represents a layer in a Photoshop document. - *
Learn more: {@link https://cloudinary.com/documentation/paged_and_layered_media#deliver_selected_layers_of_a_psd_image | Deliver selected layers of a PSD image} + *
Learn more: {@link https://cloudinary.com/documentation/paged_and_layered_media#deliver_selected_layers_of_a_psd_image|Deliver selected layers of a PSD image} * @memberOf Actions * @example * // See examples under each method @@ -39,7 +39,7 @@ function clip(): ClipAction { * @summary action * @description Delivers an image containing only specified layers of a Photoshop image. * - * Learn more: {@link https://cloudinary.com/documentation/paged_and_layered_media#deliver_selected_layers_of_a_psd_image | Deliver selected layers of a PSD image} + * Learn more: {@link https://cloudinary.com/documentation/paged_and_layered_media#deliver_selected_layers_of_a_psd_image|Deliver selected layers of a PSD image} * @memberOf Actions.PSDTools * @return {Actions.PSDTools.GetLayerAction} * @example diff --git a/src/actions/psdTools/GetLayerAction.ts b/src/actions/psdTools/GetLayerAction.ts index 08e6377a..4e393b1c 100644 --- a/src/actions/psdTools/GetLayerAction.ts +++ b/src/actions/psdTools/GetLayerAction.ts @@ -4,7 +4,7 @@ import {QualifierValue} from "../../internal/qualifier/QualifierValue.js"; /** * @description Represents a layer in a Photoshop document. - *
Learn more: {@link https://cloudinary.com/documentation/paged_and_layered_media#deliver_selected_layers_of_a_psd_image | Deliver selected layers of a PSD image} + *
Learn more: {@link https://cloudinary.com/documentation/paged_and_layered_media#deliver_selected_layers_of_a_psd_image|Deliver selected layers of a PSD image} * @extends SDK.Action * @memberOf Actions.PSDTools * @see Visit {@link Actions.PSDTools| PSDTools} for an example diff --git a/src/actions/psdTools/SmartObjectAction.ts b/src/actions/psdTools/SmartObjectAction.ts index 0594b017..c7c60d2f 100644 --- a/src/actions/psdTools/SmartObjectAction.ts +++ b/src/actions/psdTools/SmartObjectAction.ts @@ -4,7 +4,7 @@ import {QualifierValue} from "../../internal/qualifier/QualifierValue.js"; /** * @description Represents an embedded smart object in a Photoshop document. - *
Learn more: {@link https://cloudinary.com/documentation/paged_and_layered_media#extract_the_original_content_of_an_embedded_object | Extract the original content of an embedded Photoshop object} + *
Learn more: {@link https://cloudinary.com/documentation/paged_and_layered_media#extract_the_original_content_of_an_embedded_object|Extract the original content of an embedded Photoshop object} * @extends SDK.Action * @memberOf Actions.PSDTools * @see Visit {@link Actions.PSDTools| PSDTools} for an example diff --git a/src/actions/reshape.ts b/src/actions/reshape.ts index b30fd285..39ff23d5 100644 --- a/src/actions/reshape.ts +++ b/src/actions/reshape.ts @@ -53,8 +53,8 @@ function cutByImage(imageSource: ImageSource | TextSource | FetchSource): CutByI * @summary action * @description Distorts the image to an arc shape. * - * Learn more: {@link https://cloudinary.com/documentation/transformation_reference#e_distort | Distorting images}
- * Learn more: {@link https://cloudinary.com/documentation/image_transformations#image_shape_changes_and_distortion_effects | Distortion effects} + * Learn more: {@link https://cloudinary.com/documentation/transformation_reference#e_distort|Distorting images}
+ * Learn more: {@link https://cloudinary.com/documentation/image_transformations#image_shape_changes_and_distortion_effects|Distortion effects} * * @param {number} degrees The degrees to arc the image * @memberOf Actions.Reshape @@ -83,7 +83,7 @@ function distortArc(degrees: number | string): DistortArcAction { * Specify four corner coordinates, representing the new coordinates for each of the image's four corners, * in clockwise order from the top-left corner. * - * Learn more: {@link https://cloudinary.com/documentation/transformation_reference#e_distort | Distorting images} + * Learn more: {@link https://cloudinary.com/documentation/transformation_reference#e_distort|Distorting images} * * @param {number[]} coordinates - Four x/y pairs representing the new image corners * @memberOf Actions.Reshape diff --git a/src/actions/reshape/Distort.ts b/src/actions/reshape/Distort.ts index 2064972b..ce010306 100644 --- a/src/actions/reshape/Distort.ts +++ b/src/actions/reshape/Distort.ts @@ -9,7 +9,7 @@ export type IDistortCoordinates = [number, number, number, number, number, numbe * Specify four corner coordinates, representing the new coordinates for each of the image's four corners, * in clockwise order from the top-left corner. * - * Learn more: {@link https://cloudinary.com/documentation/transformation_reference#e_distort | Distorting images} + * Learn more: {@link https://cloudinary.com/documentation/transformation_reference#e_distort|Distorting images} * @param {number[]} coordinates - Four x/y pairs representing the new image corners * @extends SDK.Action * @memberOf Actions.Reshape diff --git a/src/actions/reshape/DistortArc.ts b/src/actions/reshape/DistortArc.ts index f269e738..990da358 100644 --- a/src/actions/reshape/DistortArc.ts +++ b/src/actions/reshape/DistortArc.ts @@ -4,8 +4,8 @@ import {Qualifier} from "../../internal/qualifier/Qualifier.js"; /** * @description Distorts the image to an arc shape. * - * Learn more: {@link https://cloudinary.com/documentation/transformation_reference#e_distort | Distorting images}
- * Learn more: {@link https://cloudinary.com/documentation/image_transformations#image_shape_changes_and_distortion_effects | Distortion effects} + * Learn more: {@link https://cloudinary.com/documentation/transformation_reference#e_distort|Distorting images}
+ * Learn more: {@link https://cloudinary.com/documentation/image_transformations#image_shape_changes_and_distortion_effects|Distortion effects} * @param {number} degrees The degrees to arc the image * @extends SDK.Action * @memberOf Actions.Reshape diff --git a/src/actions/resize.ts b/src/actions/resize.ts index 4fa0ea11..1a7d458f 100644 --- a/src/actions/resize.ts +++ b/src/actions/resize.ts @@ -84,7 +84,7 @@ function scale(width?: number | string, height?: number | string): ResizeScaleAc * @description * Scales your image based on automatically calculated areas of interest within each specific photo. * - * For details, see the Imagga Crop and Scale {@link https://cloudinary.com/documentation/imagga_crop_and_scale_addon#smartly_scale_images | add-on documentation}. + * For details, see the Imagga Crop and Scale {@link https://cloudinary.com/documentation/imagga_crop_and_scale_addon#smartly_scale_images|add-on documentation}. * @memberOf Actions.Resize * @param {number|string} width The required width of a transformed asset. * @param {number|string} height The required height of a transformed asset. @@ -100,7 +100,7 @@ function imaggaScale(width?: number | string, height?: number | string): ResizeS * @description * Crops your image based on automatically calculated areas of interest within each specific photo. * - * For details, see the Imagga Crop and Scale {@link https://cloudinary.com/documentation/imagga_crop_and_scale_addon#smartly_crop_images | add-on documentation}. + * For details, see the Imagga Crop and Scale {@link https://cloudinary.com/documentation/imagga_crop_and_scale_addon#smartly_crop_images|add-on documentation}. * @memberOf Actions.Resize * @param {number|string} width The required width of a transformed asset. * @param {number|string} height The required height of a transformed asset. diff --git a/src/actions/resize/ResizeSimpleAction.ts b/src/actions/resize/ResizeSimpleAction.ts index 498e7bbc..6070feda 100644 --- a/src/actions/resize/ResizeSimpleAction.ts +++ b/src/actions/resize/ResizeSimpleAction.ts @@ -53,7 +53,7 @@ class ResizeSimpleAction extends Action { /** * @description Sets the aspect ratio of the asset. - * For a list of supported types see {@link Qualifiers.AspectRatio | + * For a list of supported types see {@link Qualifiers.AspectRatio| * AspectRatio values} * @param {AspectRatioType|number|string} ratio The new aspect ratio, specified as a percentage or ratio. * @return {this} diff --git a/src/actions/rotate/RotateAction.ts b/src/actions/rotate/RotateAction.ts index e5270e6b..8769e956 100644 --- a/src/actions/rotate/RotateAction.ts +++ b/src/actions/rotate/RotateAction.ts @@ -9,8 +9,8 @@ const QUALIFIER_KEY = 'a'; /** * @description Rotates or flips an image or video. * - * Learn more: {@link https://cloudinary.com/documentation/image_transformations#rotating_image | Rotating images} - * {@link https://cloudinary.com/documentation/video_manipulation_and_delivery#rotating_videos | Rotating videos} + * Learn more: {@link https://cloudinary.com/documentation/image_transformations#rotating_image|Rotating images} + * {@link https://cloudinary.com/documentation/video_manipulation_and_delivery#rotating_videos|Rotating videos} * @extends SDK.Action * @memberOf Actions.Rotate * @see Visit {@link Actions.Rotate|Rotate} for an example diff --git a/src/actions/roundCorners.ts b/src/actions/roundCorners.ts index 333804b3..6d54b418 100644 --- a/src/actions/roundCorners.ts +++ b/src/actions/roundCorners.ts @@ -2,8 +2,8 @@ * @description Round one or more corners of an image or video. * * Learn more: - * {@link https://cloudinary.com/documentation/image_transformations#rounding_corners_and_creating_circular_images | Rounded images} - * {@link https://cloudinary.com/documentation/video_manipulation_and_delivery#rounding_corners_and_creating_circular_videos | Rounded videos} + * {@link https://cloudinary.com/documentation/image_transformations#rounding_corners_and_creating_circular_images|Rounded images} + * {@link https://cloudinary.com/documentation/video_manipulation_and_delivery#rounding_corners_and_creating_circular_videos|Rounded videos} * @memberOf Actions * @namespace RoundCorners * @example diff --git a/src/actions/transcode.ts b/src/actions/transcode.ts index 59fb3185..2784d36d 100644 --- a/src/actions/transcode.ts +++ b/src/actions/transcode.ts @@ -24,7 +24,7 @@ export type ITranscodeAction = BitRateAction /** * @description Defines how to transcode a video to another format * - * Learn more: {@link https://cloudinary.com/documentation/video_manipulation_and_delivery#transcoding_video_to_other_formats | Transcoding video to other formats} + * Learn more: {@link https://cloudinary.com/documentation/video_manipulation_and_delivery#transcoding_video_to_other_formats|Transcoding video to other formats} * @memberOf Actions * @namespace Transcode * @example @@ -36,7 +36,7 @@ export type ITranscodeAction = BitRateAction * @memberOf Actions.Transcode * @description Sets the audio sample frequency. * - * Learn more: {@link https://cloudinary.com/documentation/audio_transformations#audio_frequency_control | Audio frequency control} + * Learn more: {@link https://cloudinary.com/documentation/audio_transformations#audio_frequency_control|Audio frequency control} * @param {AudioFrequencyType|string|number} freq The audio frequency. * @example * import {Cloudinary} from "@cloudinary/url-gen/instance/Cloudinary"; @@ -79,7 +79,7 @@ function audioCodec(codec: AudioCodecType | string): AudioCodecAction{ * Supported codecs: h264, h265 (MPEG-4); vp8, vp9 (WebM). * * Learn more: - * {@link https://cloudinary.com/documentation/video_manipulation_and_delivery#bitrate_control | Bitrate control} + * {@link https://cloudinary.com/documentation/video_manipulation_and_delivery#bitrate_control|Bitrate control} * * @param {string|number} bitRate The number of bits used to represent the video data per second. By default the video * uses a variable bitrate (VBR), with this value indicating the maximum bitrate. diff --git a/src/actions/transcode/AudioCodecAction.ts b/src/actions/transcode/AudioCodecAction.ts index 9a71f2c9..b9dc07a9 100644 --- a/src/actions/transcode/AudioCodecAction.ts +++ b/src/actions/transcode/AudioCodecAction.ts @@ -6,7 +6,7 @@ import {Qualifier} from "../../internal/qualifier/Qualifier.js"; * @memberOf Actions.Transcode * @description Controls the audio codec or removes the audio channel. * - * Learn more: {@link https://cloudinary.com/documentation/audio_transformations#audio_frequency_control | Audio codec settings} + * Learn more: {@link https://cloudinary.com/documentation/audio_transformations#audio_frequency_control|Audio codec settings} * @see Visit {@link Actions.Transcode|Transcode} for an example */ class AudioCodecAction extends Action { diff --git a/src/actions/transcode/AudioFrequencyAction.ts b/src/actions/transcode/AudioFrequencyAction.ts index 021add8f..68784424 100644 --- a/src/actions/transcode/AudioFrequencyAction.ts +++ b/src/actions/transcode/AudioFrequencyAction.ts @@ -6,7 +6,7 @@ import {Qualifier} from "../../internal/qualifier/Qualifier.js"; * @memberOf Actions.Transcode * @description Controls audio sample frequency. * - * Learn more: {@link https://cloudinary.com/documentation/audio_transformations#audio_codec_settings | Audio frequency control} + * Learn more: {@link https://cloudinary.com/documentation/audio_transformations#audio_codec_settings|Audio frequency control} * @see Visit {@link Actions.Transcode|Transcode} for an example */ class AudioFrequencyAction extends Action { diff --git a/src/actions/transcode/BitRateAction.ts b/src/actions/transcode/BitRateAction.ts index bbe12703..fd83b4dc 100644 --- a/src/actions/transcode/BitRateAction.ts +++ b/src/actions/transcode/BitRateAction.ts @@ -7,7 +7,7 @@ import {QualifierValue} from "../../internal/qualifier/QualifierValue.js"; * @memberOf Actions.Transcode * @description Defines the video bitrate in bits per second. * - * Learn more: {@link https://cloudinary.com/documentation/video_manipulation_and_delivery#bitrate_control | Bitrate control} + * Learn more: {@link https://cloudinary.com/documentation/video_manipulation_and_delivery#bitrate_control|Bitrate control} * @see Visit {@link Actions.Transcode|Transcode} for an example */ class BitRateAction extends Action { diff --git a/src/actions/transcode/FPSAction.ts b/src/actions/transcode/FPSAction.ts index 6781f12e..a762b842 100644 --- a/src/actions/transcode/FPSAction.ts +++ b/src/actions/transcode/FPSAction.ts @@ -8,7 +8,7 @@ import {Qualifier} from "../../internal/qualifier/Qualifier.js"; * is delivered with * an expected FPS level (helps with sync to audio). * - * Learn more: {@link https://cloudinary.com/documentation/video_transformation_reference#video_settings | Video settings} + * Learn more: {@link https://cloudinary.com/documentation/video_transformation_reference#video_settings|Video settings} * @see Visit {@link Actions.Transcode|Transcode} for an example */ class FPSAction extends Action { diff --git a/src/actions/transcode/FPSRangeAction.ts b/src/actions/transcode/FPSRangeAction.ts index cdd520ed..fb751e14 100644 --- a/src/actions/transcode/FPSRangeAction.ts +++ b/src/actions/transcode/FPSRangeAction.ts @@ -9,7 +9,7 @@ import {QualifierValue} from "../../internal/qualifier/QualifierValue.js"; * is delivered with * an expected FPS level (helps with sync to audio). * - * Learn more: {@link https://cloudinary.com/documentation/video_transformation_reference#video_settings | Video settings} + * Learn more: {@link https://cloudinary.com/documentation/video_transformation_reference#video_settings|Video settings} * @see Visit {@link Actions.Transcode|Transcode} for an example */ class FPSRangeAction extends Action { diff --git a/src/actions/transcode/StreamingProfile.ts b/src/actions/transcode/StreamingProfile.ts index 15ea8575..280679b9 100644 --- a/src/actions/transcode/StreamingProfile.ts +++ b/src/actions/transcode/StreamingProfile.ts @@ -6,7 +6,7 @@ import {Qualifier} from "../../internal/qualifier/Qualifier.js"; * @memberOf Actions.Transcode * @description The predefined streaming profiles. * - * Learn more: {@link https://cloudinary.com/documentation/video_manipulation_and_delivery#predefined_streaming_profiles | Predefined streaming profiles} + * Learn more: {@link https://cloudinary.com/documentation/video_manipulation_and_delivery#predefined_streaming_profiles|Predefined streaming profiles} * @see Visit {@link Actions.Transcode|Transcode} for an example */ class StreamingProfileAction extends Action { diff --git a/src/actions/videoEdit.ts b/src/actions/videoEdit.ts index a2d15871..6930162a 100644 --- a/src/actions/videoEdit.ts +++ b/src/actions/videoEdit.ts @@ -8,7 +8,7 @@ import {PreviewAction} from "./videoEdit/PreviewAction.js"; * @summary action * @description Methods for editing a video. * - * Learn more: {@link https://cloudinary.com/documentation/video_manipulation_and_delivery | Video manipulation} + * Learn more: {@link https://cloudinary.com/documentation/video_manipulation_and_delivery|Video manipulation} * @memberOf Actions * @namespace VideoEdit * @example @@ -19,7 +19,7 @@ import {PreviewAction} from "./videoEdit/PreviewAction.js"; * @summary action * @description Concatenates another video. * - * Learn more: {@link https://cloudinary.com/documentation/video_manipulation_and_delivery#concatenating_videos | Concatenating videos} + * Learn more: {@link https://cloudinary.com/documentation/video_manipulation_and_delivery#concatenating_videos|Concatenating videos} * * @memberOf Actions.VideoEdit * @param {VideoSource} source The source to concatenate. @@ -46,7 +46,7 @@ function concatenate(source:VideoSource):ConcatenateAction{ * @summary action * @description Trims a video (and discards the rest). * - * Learn more: {@link https://cloudinary.com/documentation/video_manipulation_and_delivery#trimming_videos | + * Learn more: {@link https://cloudinary.com/documentation/video_manipulation_and_delivery#trimming_videos| * Trimming videos} * * @memberOf Actions.VideoEdit @@ -72,7 +72,7 @@ function trim(): TrimAction{ * @summary action * @description Increases or decreases the volume by a percentage of the current volume. * - * Learn more: {@link https://cloudinary.com/documentation/audio_transformations#adjust_the_audio_volume | + * Learn more: {@link https://cloudinary.com/documentation/audio_transformations#adjust_the_audio_volume| * Adjust the audio volume} * * @memberOf Actions.VideoEdit @@ -99,7 +99,7 @@ function volume(volumeValue: string | number): VolumeAction{ * @summary action * @description A video preview is a short excerpt from a video that can be used to engage your audience and help them select the video content that interests them. * - * Learn more: {@link https://cloudinary.com/documentation/video_manipulation_and_delivery#generate_an_ai_based_video_preview | + * Learn more: {@link https://cloudinary.com/documentation/video_manipulation_and_delivery#generate_an_ai_based_video_preview| * Create a video preview} * * @memberOf Actions.VideoEdit diff --git a/src/actions/videoEdit/ConcatenateAction.ts b/src/actions/videoEdit/ConcatenateAction.ts index 1abccc00..63fef34b 100644 --- a/src/actions/videoEdit/ConcatenateAction.ts +++ b/src/actions/videoEdit/ConcatenateAction.ts @@ -7,7 +7,7 @@ import {FetchSource} from "../../qualifiers/source/sourceTypes/FetchSource.js"; /** * @description Class for Concatenating another video. * - * Learn more: {@link https://cloudinary.com/documentation/video_manipulation_and_delivery#concatenating_videos | Concatenating videos} + * Learn more: {@link https://cloudinary.com/documentation/video_manipulation_and_delivery#concatenating_videos|Concatenating videos} * @extends SDK.Action * @memberOf Actions.VideoEdit * @see Visit {@link Actions.VideoEdit|VideoEdit} for an example diff --git a/src/qualifiers/FontAntialias.ts b/src/qualifiers/FontAntialias.ts index f58656d0..0a435f1e 100644 --- a/src/qualifiers/FontAntialias.ts +++ b/src/qualifiers/FontAntialias.ts @@ -1,7 +1,7 @@ /** * @description Contains functions to select the font antialias setting. - * Learn more: {@link https://cloudinary.com/documentation/image_transformations#adding_text_overlays | Adding text overlays to images} - * Learn more: {@link https://cloudinary.com/documentation/video_manipulation_and_delivery#adding_text_captions | Adding text overlays to videos} + * Learn more: {@link https://cloudinary.com/documentation/image_transformations#adding_text_overlays|Adding text overlays to images} + * Learn more: {@link https://cloudinary.com/documentation/video_manipulation_and_delivery#adding_text_captions|Adding text overlays to videos} * @memberOf Qualifiers * @namespace FontAntialias * @see To be used with {@link Qualifiers.TextStyle|Text Style} diff --git a/src/qualifiers/artisticFilter.ts b/src/qualifiers/artisticFilter.ts index 70cf204f..e322d6be 100644 --- a/src/qualifiers/artisticFilter.ts +++ b/src/qualifiers/artisticFilter.ts @@ -1,6 +1,6 @@ /** * @description Contains methods to specify the type of artistic filter
- * Learn more: {@link https://cloudinary.com/documentation/image_transformations#artistic_filter_effects | Artistic Filter} + * Learn more: {@link https://cloudinary.com/documentation/image_transformations#artistic_filter_effects|Artistic Filter} * @namespace ArtisticFilter * @memberOf Qualifiers * @see Visit {@link Actions.Effect|Effect} for an example diff --git a/src/qualifiers/chromaSubSampling.ts b/src/qualifiers/chromaSubSampling.ts index 71602376..ed5c079b 100644 --- a/src/qualifiers/chromaSubSampling.ts +++ b/src/qualifiers/chromaSubSampling.ts @@ -14,7 +14,7 @@ function chroma420():number { return 420; } /** * @description Contains functions to select the chroma subsampling setting. - * Learn more: {@link https://cloudinary.com/documentation/image_transformations#toggling_chroma_subsampling | Toggling chroma subsampling} + * Learn more: {@link https://cloudinary.com/documentation/image_transformations#toggling_chroma_subsampling|Toggling chroma subsampling} * @memberOf Qualifiers * @namespace ChromeSubSampling * @see To be used in {@link Actions.Delivery|Delivery} action (Quality) diff --git a/src/qualifiers/dpr.ts b/src/qualifiers/dpr.ts index e6c0bda5..6ec5d454 100644 --- a/src/qualifiers/dpr.ts +++ b/src/qualifiers/dpr.ts @@ -1,6 +1,6 @@ /** * @description Contains functions to select the device pixel ratio. - * Learn more: {@link https://cloudinary.com/documentation/image_transformations#set_device_pixel_ratio_dpr | Set Device Pixel Ratio} + * Learn more: {@link https://cloudinary.com/documentation/image_transformations#set_device_pixel_ratio_dpr|Set Device Pixel Ratio} * @memberOf Qualifiers * @namespace DPR * @see Visit {@link Actions.Delivery.dpr|Delivery DPR} for an example diff --git a/src/qualifiers/expression.ts b/src/qualifiers/expression.ts index 61fba8c5..a614bddb 100644 --- a/src/qualifiers/expression.ts +++ b/src/qualifiers/expression.ts @@ -5,7 +5,7 @@ import {ExpressionQualifier} from "./expression/ExpressionQualifier.js"; /** * @description * Used for variable or conditional expressions - * Learn more: {@link https://cloudinary.com/documentation/user_defined_variables#arithmetic_expressions | Arithmetic expressions } + * Learn more: {@link https://cloudinary.com/documentation/user_defined_variables#arithmetic_expressions|Arithmetic expressions } * @namespace Expression * @memberOf Qualifiers */ diff --git a/src/qualifiers/flag.ts b/src/qualifiers/flag.ts index 29a82afe..fbd9d277 100644 --- a/src/qualifiers/flag.ts +++ b/src/qualifiers/flag.ts @@ -261,7 +261,7 @@ function mono(): FlagQualifier { * @memberOf Qualifiers.Flag * @description Used internally by Position within an Overlay, this flag will tile the overlay across your image. * - * Learn more: {@link https://cloudinary.com/documentation/transformation_reference#fl_no_overflow | Overflow in overlays} + * Learn more: {@link https://cloudinary.com/documentation/transformation_reference#fl_no_overflow|Overflow in overlays} * @return {Qualifiers.Flag.FlagQualifier} */ function noOverflow(): FlagQualifier { @@ -454,7 +454,7 @@ function tiff8Lzw(): FlagQualifier { * @memberOf Qualifiers.Flag * @description Used internally by Position within an Overlay, this flag will tile the overlay across your image. * - * Learn more: {@link https://cloudinary.com/documentation/image_transformations#tiling_overlays | Tiling overlay} + * Learn more: {@link https://cloudinary.com/documentation/image_transformations#tiling_overlays|Tiling overlay} * @return {Qualifiers.Flag.FlagQualifier} */ function tiled(): FlagQualifier { diff --git a/src/qualifiers/focusOn.ts b/src/qualifiers/focusOn.ts index e8895f7c..bc41b501 100644 --- a/src/qualifiers/focusOn.ts +++ b/src/qualifiers/focusOn.ts @@ -304,7 +304,7 @@ function tvmonitor(): FocusOnValue { /** * @summary qualifier * @memberOf Qualifiers.FocusOn - * @description Detect all text elements in an image using the {@link https://cloudinary.com/documentation/image_transformations#control_gravity | OCR Text Detection and Extraction add-on} and use the detected bounding box coordinates as the basis of the transformation. + * @description Detect all text elements in an image using the {@link https://cloudinary.com/documentation/image_transformations#control_gravity|OCR Text Detection and Extraction add-on} and use the detected bounding box coordinates as the basis of the transformation. * @return {Qualifiers.FocusOn.FocusOnValue} FocusOnValue */ function ocr(): FocusOnValue { diff --git a/src/qualifiers/fontHinting.ts b/src/qualifiers/fontHinting.ts index d3c1eecd..8c7ad03a 100644 --- a/src/qualifiers/fontHinting.ts +++ b/src/qualifiers/fontHinting.ts @@ -1,7 +1,7 @@ /** * @description Contains functions to select the font hinting setting. - * Learn more: {@link https://cloudinary.com/documentation/image_transformations#adding_text_overlays | Adding text overlays to images} - * Learn more: {@link https://cloudinary.com/documentation/video_manipulation_and_delivery#adding_text_captions | Adding text overlays to videos} + * Learn more: {@link https://cloudinary.com/documentation/image_transformations#adding_text_overlays|Adding text overlays to images} + * Learn more: {@link https://cloudinary.com/documentation/video_manipulation_and_delivery#adding_text_captions|Adding text overlays to videos} * @memberOf Qualifiers * @namespace FontHinting * @see To be used with {@link Qualifiers.TextStyle|Text Style} diff --git a/src/qualifiers/fontStyle.ts b/src/qualifiers/fontStyle.ts index 7e6707f0..354f76e1 100644 --- a/src/qualifiers/fontStyle.ts +++ b/src/qualifiers/fontStyle.ts @@ -1,7 +1,7 @@ /** * @description Contains functions to select the style of the text. - * Learn more: {@link https://cloudinary.com/documentation/image_transformations#adding_text_overlays | Adding text overlays to images} - * Learn more: {@link https://cloudinary.com/documentation/video_manipulation_and_delivery#adding_text_captions | Adding text overlays to videos} + * Learn more: {@link https://cloudinary.com/documentation/image_transformations#adding_text_overlays|Adding text overlays to images} + * Learn more: {@link https://cloudinary.com/documentation/video_manipulation_and_delivery#adding_text_captions|Adding text overlays to videos} * @memberOf Qualifiers * @namespace FontStyle * @see To be used with {@link Qualifiers.TextStyle|Text Style} diff --git a/src/qualifiers/fontWeight.ts b/src/qualifiers/fontWeight.ts index 4537434f..791e6abc 100644 --- a/src/qualifiers/fontWeight.ts +++ b/src/qualifiers/fontWeight.ts @@ -1,7 +1,7 @@ /** * @description Contains functions to select the font weight. - * Learn more: {@link https://cloudinary.com/documentation/image_transformations#adding_text_overlays | Adding text overlays to images} - * Learn more: {@link https://cloudinary.com/documentation/video_manipulation_and_delivery#adding_text_captions | Adding text overlays to videos} + * Learn more: {@link https://cloudinary.com/documentation/image_transformations#adding_text_overlays|Adding text overlays to images} + * Learn more: {@link https://cloudinary.com/documentation/video_manipulation_and_delivery#adding_text_captions|Adding text overlays to videos} * @memberOf Qualifiers * @namespace FontWeight * @see To be used with {@link Qualifiers.TextStyle|Text Style} diff --git a/src/qualifiers/gravity.ts b/src/qualifiers/gravity.ts index c30445b0..b84ebcf1 100644 --- a/src/qualifiers/gravity.ts +++ b/src/qualifiers/gravity.ts @@ -8,8 +8,8 @@ import {XYCenterGravity} from "./gravity/xyCenterGravity/XYCenterGravity.js"; /** * @description Defines the gravity based on directional values from a compass. - * Learn more: {@link https://cloudinary.com/documentation/image_transformations#control_gravity | Control gravity for images} - * Learn more: {@link https://cloudinary.com/documentation/image_transformations#control_gravity | Control gravity for videos} + * Learn more: {@link https://cloudinary.com/documentation/image_transformations#control_gravity|Control gravity for images} + * Learn more: {@link https://cloudinary.com/documentation/image_transformations#control_gravity|Control gravity for videos} * @param {Qualifiers.Compass} direction A compass Values * @memberOf Qualifiers.Gravity * @example diff --git a/src/qualifiers/improveMode.ts b/src/qualifiers/improveMode.ts index 2c84f708..99fd8172 100644 --- a/src/qualifiers/improveMode.ts +++ b/src/qualifiers/improveMode.ts @@ -3,7 +3,7 @@ * @description Defines the available modes to use with the improve effect. * @namespace ImproveMode * @memberOf Qualifiers - * @see To be used with an {@link Actions.Adjust.improve|Adjust Improve} + * @see To be used with an {@link Actions.Adjust.ImproveAction|Adjust Improve} * @example * import {Cloudinary} from "@cloudinary/url-gen/instance/Cloudinary"; * import {outdoor} from "@cloudinary/url-gen/qualifiers/improveMode"; diff --git a/src/qualifiers/position/PositionQualifier.ts b/src/qualifiers/position/PositionQualifier.ts index ab021c66..49a171ec 100644 --- a/src/qualifiers/position/PositionQualifier.ts +++ b/src/qualifiers/position/PositionQualifier.ts @@ -27,7 +27,7 @@ class PositionQualifier extends Action { /** * @description Tiles the overlay across your image. - * Learn more: {@link https://cloudinary.com/documentation/image_transformations#tiling_overlays | Tiling overlay} + * Learn more: {@link https://cloudinary.com/documentation/image_transformations#tiling_overlays|Tiling overlay} */ tiled(): this { this.addFlag(tiled()); @@ -37,7 +37,7 @@ class PositionQualifier extends Action { /** * TODO - This should accept a boolean value * @description Prevents an image or text overlay from extending a delivered image canvas beyond the dimensions of the base image - * Learn more: {@link https://cloudinary.com/documentation/transformation_reference#fl_no_overflow | Overflow in overlays} + * Learn more: {@link https://cloudinary.com/documentation/transformation_reference#fl_no_overflow|Overflow in overlays} */ allowOverflow(bool = true): this { if (bool === false) { diff --git a/src/qualifiers/progressive.ts b/src/qualifiers/progressive.ts index e4733bd7..d9614886 100644 --- a/src/qualifiers/progressive.ts +++ b/src/qualifiers/progressive.ts @@ -1,6 +1,6 @@ /** * @description Contains functions to select the mode when using a progressive format. - * Learn more: {@link https://cloudinary.com/documentation/transformation_reference#fl_progressive | Progressive modes} + * Learn more: {@link https://cloudinary.com/documentation/transformation_reference#fl_progressive|Progressive modes} * @memberOf Qualifiers * @namespace Progressive * @example diff --git a/src/qualifiers/region.ts b/src/qualifiers/region.ts index 5dadb35b..e8292052 100644 --- a/src/qualifiers/region.ts +++ b/src/qualifiers/region.ts @@ -30,9 +30,9 @@ function ocr(): NamedRegion { /** * @description Contains functions to select the type of region, used with Effect.blur() and Effect.pixelate(). - * See also: {@link Actions.Effect.BlurAction | Blur Action} - * See also: {@link Actions.Effect.Pixelate | Blur Action} - * See also: {@link Actions.Effect | Possible effects} + * See also: {@link Actions.Effect.BlurAction|Blur Action} + * See also: {@link Actions.Effect.Pixelate|Blur Action} + * See also: {@link Actions.Effect|Possible effects} * @namespace Region * @memberOf Qualifiers */ diff --git a/src/qualifiers/rotationMode.ts b/src/qualifiers/rotationMode.ts index eb05fadd..89df4158 100644 --- a/src/qualifiers/rotationMode.ts +++ b/src/qualifiers/rotationMode.ts @@ -1,8 +1,8 @@ /** * @description Contains functions to select the rotation mode. - *
Learn more: {@link https://cloudinary.com/documentation/image_transformations#rotating_images | Rotating images} - *
Learn more: {@link https://cloudinary.com/documentation/video_manipulation_and_delivery#rotating_videos | Rotating videos} + *
Learn more: {@link https://cloudinary.com/documentation/image_transformations#rotating_images|Rotating images} + *
Learn more: {@link https://cloudinary.com/documentation/video_manipulation_and_delivery#rotating_videos|Rotating videos} * @memberOf Qualifiers * @namespace RotationMode * @see Visit {@link Actions.Rotate|Rotate Action} for an example diff --git a/src/qualifiers/simulateColorBlind.ts b/src/qualifiers/simulateColorBlind.ts index 0489b3c2..213a4090 100644 --- a/src/qualifiers/simulateColorBlind.ts +++ b/src/qualifiers/simulateColorBlind.ts @@ -1,6 +1,6 @@ /** * @description Contains functions to select the type of color-blind condition to simulate. - * Learn more: {@link https://cloudinary.com/blog/open_your_eyes_to_color_accessibility | Blog: Open your Eyes to Color Accessibility} + * Learn more: {@link https://cloudinary.com/blog/open_your_eyes_to_color_accessibility|Blog: Open your Eyes to Color Accessibility} * @memberOf Qualifiers * @namespace SimulateColorBlindValues * @see Visit {@link Actions.Effect|Effect} for an example diff --git a/src/qualifiers/textAlignment.ts b/src/qualifiers/textAlignment.ts index a1362df0..fb432dab 100644 --- a/src/qualifiers/textAlignment.ts +++ b/src/qualifiers/textAlignment.ts @@ -1,7 +1,7 @@ /** * @description Contains functions to select the alignment of the text. - * Learn more: {@link https://cloudinary.com/documentation/image_transformations#adding_text_overlays | Adding text overlays to images} - * Learn more: {@link https://cloudinary.com/documentation/video_manipulation_and_delivery#adding_text_captions | Adding text overlays to videos} + * Learn more: {@link https://cloudinary.com/documentation/image_transformations#adding_text_overlays|Adding text overlays to images} + * Learn more: {@link https://cloudinary.com/documentation/video_manipulation_and_delivery#adding_text_captions|Adding text overlays to videos} * @memberOf Qualifiers * @namespace TextAlignment * @see To be used with {@link Qualifiers.TextStyle|Text Style} diff --git a/src/qualifiers/textDecoration.ts b/src/qualifiers/textDecoration.ts index 9b6b97d9..863e9ffc 100644 --- a/src/qualifiers/textDecoration.ts +++ b/src/qualifiers/textDecoration.ts @@ -1,7 +1,7 @@ /** * @description Contains functions to select the text decoration to be used with text. - * Learn more: {@link https://cloudinary.com/documentation/image_transformations#adding_text_overlays | Adding text overlays to images} - * Learn more: {@link https://cloudinary.com/documentation/video_manipulation_and_delivery#adding_text_captions | Adding text overlays to videos} + * Learn more: {@link https://cloudinary.com/documentation/image_transformations#adding_text_overlays|Adding text overlays to images} + * Learn more: {@link https://cloudinary.com/documentation/video_manipulation_and_delivery#adding_text_captions|Adding text overlays to videos} * @memberOf Qualifiers * @namespace TextDecoration * @see To be used with {@link Qualifiers.TextStyle|Text Style} diff --git a/src/qualifiers/textStroke.ts b/src/qualifiers/textStroke.ts index 9149affb..70030370 100644 --- a/src/qualifiers/textStroke.ts +++ b/src/qualifiers/textStroke.ts @@ -2,8 +2,8 @@ import {SystemColors} from "./color.js"; import {ExpressionQualifier} from "./expression/ExpressionQualifier.js"; /** * @description Contains function to set the outline stroke. - * Learn more: {@link https://cloudinary.com/documentation/image_transformations#adding_text_overlays | Adding text overlays to images} - * Learn more: {@link https://cloudinary.com/documentation/video_manipulation_and_delivery#adding_text_captions | Adding text overlays to videos} + * Learn more: {@link https://cloudinary.com/documentation/image_transformations#adding_text_overlays|Adding text overlays to images} + * Learn more: {@link https://cloudinary.com/documentation/video_manipulation_and_delivery#adding_text_captions|Adding text overlays to videos} * @memberOf Qualifiers * @namespace TextAlignment * @see To be used with {@link Qualifiers.TextStyle|Text Style} diff --git a/src/qualifiers/textStyle.ts b/src/qualifiers/textStyle.ts index 8db42576..13ad7fa6 100644 --- a/src/qualifiers/textStyle.ts +++ b/src/qualifiers/textStyle.ts @@ -7,8 +7,8 @@ import {FontAntialiasType, FontWeightType, TextAlignmentType, TextDecorationType /** * @summary qualifier * @description Specifies how to style your layered text, controls the font, font size, line spacing and more. - *
Learn more: {@link https://cloudinary.com/documentation/image_transformations#adding_text_overlays | Adding text overlays to images} - *
Learn more: {@link https://cloudinary.com/documentation/video_manipulation_and_delivery#adding_text_captions | Adding text overlays to videos} + *
Learn more: {@link https://cloudinary.com/documentation/image_transformations#adding_text_overlays|Adding text overlays to images} + *
Learn more: {@link https://cloudinary.com/documentation/video_manipulation_and_delivery#adding_text_captions|Adding text overlays to videos} * @see {@link Actions.Overlay| The overlay action} * @see {@link Actions.Underlay| The underlay action} * @memberOf Qualifiers diff --git a/src/qualifiers/videoCodecLevel.ts b/src/qualifiers/videoCodecLevel.ts index 3a54b004..4cf0679d 100644 --- a/src/qualifiers/videoCodecLevel.ts +++ b/src/qualifiers/videoCodecLevel.ts @@ -1,6 +1,6 @@ /** * @description Contains functions to select the video codec level. - * Learn more: {@link https://cloudinary.com/documentation/video_manipulation_and_delivery#video_codec_settings | Video codec settings} + * Learn more: {@link https://cloudinary.com/documentation/video_manipulation_and_delivery#video_codec_settings|Video codec settings} * @memberOf Qualifiers * @namespace VideoCodecLevel * @see Visit {@link Actions.Transcode|Transcode} for an example diff --git a/src/qualifiers/videoCodecProfile.ts b/src/qualifiers/videoCodecProfile.ts index d680ad94..45b66e05 100644 --- a/src/qualifiers/videoCodecProfile.ts +++ b/src/qualifiers/videoCodecProfile.ts @@ -1,6 +1,6 @@ /** * @description Contains functions to select the video codec profile. - * Learn more: {@link https://cloudinary.com/documentation/video_manipulation_and_delivery#video_codec_settings | Video codec settings} + * Learn more: {@link https://cloudinary.com/documentation/video_manipulation_and_delivery#video_codec_settings|Video codec settings} * @memberOf Qualifiers * @namespace VideoCodecProfile * @see Visit {@link Actions.Transcode|Transcode} for an example