Skip to content

Commit

Permalink
Fixed all Errors
Browse files Browse the repository at this point in the history
  • Loading branch information
MeAlam1 committed Dec 13, 2024
1 parent 6d2c170 commit ff5264d
Show file tree
Hide file tree
Showing 8 changed files with 7 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@
* <li>{@link #getSuffix()} - Retrieves the current suffix for bold formatting.</li>
* <li>{@link #isBoldEnabled()} - Retrieves whether bold formatting is enabled.</li>
* </ul>
* </p>
*
* @author MeAlam
* @version 1.6.0
Expand Down Expand Up @@ -85,7 +84,7 @@ public class Bold extends MarkdownFeature {
* <p>
* Purpose: This variable holds the state of the bold feature (enabled or disabled).<br>
* When: It is checked whenever the markdown text is processed to determine whether the bold should be applied.<br>
* Where: It is used in the {@link Bold#isFeatureEnabled()} & {@link Bold#isBoldEnabled()} methods.<br>
* Where: It is used in the {@link Bold#isFeatureEnabled()} and {@link Bold#isBoldEnabled()} methods.<br>
* Additional Info: This feature can be enabled or disabled globally through this flag.<br>
* </p>
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ public class Color extends MarkdownFeature {
* <p>
* Purpose: This variable holds the state of the color feature (enabled or disabled).<br>
* When: It is checked whenever the markdown text is processed to determine whether the color should be applied.<br>
* Where: It is used in the {@link Color#isFeatureEnabled()} & {@link Color#isColorEnabled()} methods.<br>
* Where: It is used in the {@link Color#isFeatureEnabled()} and {@link Color#isColorEnabled()} methods.<br>
* Additional Info: This feature can be enabled or disabled globally through this flag.<br>
* </p>
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
* <li>{@link #apply(MutableComponent, String)} - Applies the copy-to-clipboard functionality to the provided text.</li>
* <li>{@link #isCopyToClipboardEnabled()} - Checks if the copy-to-clipboard feature is enabled.</li>
* </ul>
* </p>
*
* @author MeAlam
* @version 1.6.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ public class Hyperlink extends MarkdownFeature {
* <p>
* Purpose: This variable holds the state of the hyperlink feature (enabled or disabled).<br>
* When: It is checked whenever the markdown text is processed to determine whether the hyperlink should be applied.<br>
* Where: It is used in the {@link #isFeatureEnabled()} & {@link #isHyperlinkEnabled()} methods.<br>
* Where: It is used in the {@link #isFeatureEnabled()} and {@link #isHyperlinkEnabled()} methods.<br>
* Additional Info: This feature can be enabled or disabled globally through this flag.<br>
* </p>
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@
* <li>{@link #getSuffix()} - Retrieves the current suffix for italic formatting.</li>
* <li>{@link #isItalicEnabled()} - Retrieves whether italic formatting is enabled.</li>
* </ul>
* </p>
*
* @author MeAlam
* @version 1.6.0
Expand Down Expand Up @@ -81,7 +80,7 @@ public class Italic extends MarkdownFeature {
* <p>
* Purpose: This variable holds the state of the italic feature (enabled or disabled).<br>
* When: It is checked whenever the markdown text is processed to determine whether italic should be applied.<br>
* Where: It is used in the {@link Italic#isFeatureEnabled()} & {@link Italic#isItalicEnabled()} methods.<br>
* Where: It is used in the {@link Italic#isFeatureEnabled()} and {@link Italic#isItalicEnabled()} methods.<br>
* Additional Info: This feature can be enabled or disabled globally through this flag.<br>
* </p>
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@
* <li>{@link #getSuffix()} - Retrieves the current suffix for Spoiler formatting.</li>
* <li>{@link #isSpoilerEnabled()} - Retrieves whether Spoiler formatting is enabled.</li>
* </ul>
* </p>
*
* @author MeAlam
* @version 1.6.0
Expand Down Expand Up @@ -81,7 +80,7 @@ public class Spoiler extends MarkdownFeature {
* <p>
* Purpose: This variable holds the state of the spoiler feature (enabled or disabled).<br>
* When: It is checked whenever the markdown text is processed to determine whether the spoiler should be applied.<br>
* Where: It is used in the {@link Spoiler#isFeatureEnabled()} & {@link Spoiler#isSpoilerEnabled()} methods.<br>
* Where: It is used in the {@link Spoiler#isFeatureEnabled()} and {@link Spoiler#isSpoilerEnabled()} methods.<br>
* Additional Info: This feature can be enabled or disabled globally through this flag.<br>
* </p>
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@
* <li>{@link #getSuffix()} - Retrieves the current suffix for Strikethrough formatting.</li>
* <li>{@link #isStrikethroughEnabled()} - Retrieves whether Strikethrough formatting is enabled.</li>
* </ul>
* </p>
*
* @author MeAlam
* @version 1.6.0
Expand Down Expand Up @@ -84,7 +83,7 @@ public class Strikethrough extends MarkdownFeature {
* <p>
* Purpose: This variable holds the state of the strikethrough feature (enabled or disabled).<br>
* When: It is checked whenever the markdown text is processed to determine whether the strikethrough should be applied.<br>
* Where: It is used in the {@link Strikethrough#isFeatureEnabled()} & {@link Strikethrough#isStrikethroughEnabled()} methods.<br>
* Where: It is used in the {@link Strikethrough#isFeatureEnabled()} and {@link Strikethrough#isStrikethroughEnabled()} methods.<br>
* Additional Info: This feature can be enabled or disabled globally through this flag.<br>
* </p>
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ public class Underline extends MarkdownFeature {
* <p>
* Purpose: This variable holds the state of the underline feature (enabled or disabled).<br>
* When: It is checked whenever the markdown text is processed to determine whether the underline should be applied.<br>
* Where: It is used in the {@link Underline#isFeatureEnabled()} & {@link Underline#isUnderlineEnabled()} methods.<br>
* Where: It is used in the {@link Underline#isFeatureEnabled()} and {@link Underline#isUnderlineEnabled()} methods.<br>
* Additional Info: This feature can be enabled or disabled globally through this flag.<br>
* </p>
*
Expand Down

0 comments on commit ff5264d

Please sign in to comment.