Skip to content

Commit dd958f9

Browse files
committed
Removed some uneeded text
1 parent 8107a46 commit dd958f9

24 files changed

+1
-41
lines changed

docs/Configuration/Comments.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,4 +48,3 @@ To enable the processing of comments, allowing annotations to be included in you
4848
$ParsedownExtended->config()->set('comments', true);
4949
```
5050

51-
This configuration will ensure that any comments added within the Markdown using the appropriate syntax will be processed accordingly, following your specified settings.

docs/Configuration/Definition Lists.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,4 +40,3 @@ To prevent the automatic processing of definition lists, thereby disabling the f
4040
$ParsedownExtended->config()->set('definition_lists', false);
4141
```
4242

43-
This configuration allows you to control whether definition lists are recognized and formatted within your Markdown content based on your specific needs.

docs/Configuration/Diagrams.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,4 +65,3 @@ $ParsedownExtended->config()->set('diagrams', [
6565
]);
6666
```
6767

68-
This configuration allows you to control how diagram syntax is handled within your Markdown content, ensuring that it is processed according to your project’s requirements.

docs/Configuration/Emojis.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,4 +58,3 @@ Gone camping! ⛺ Be back soon.
5858

5959
That is so funny! 😂
6060

61-
This setup allows you to easily control whether emojis are converted from shortcodes within your Markdown content, helping you create more expressive and visually appealing documents.

docs/Configuration/Emphasis.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,4 +68,3 @@ To completely disable all forms of text emphasis:
6868
$ParsedownExtended->config()->set('emphasis', false);
6969
```
7070

71-
This configuration allows you to have full control over how text emphasis is handled within your Markdown documents, ensuring that the content aligns with your specific presentation needs.

docs/Configuration/Footnotes.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,5 +47,3 @@ To disable footnotes, preventing the parsing and rendering of footnote syntax:
4747
```php
4848
$ParsedownExtended->config()->set('footnotes', false);
4949
```
50-
51-
By configuring the footnotes feature, you can tailor how your Markdown content utilizes footnotes, providing a cleaner and more informative reading experience. Whether enabling detailed references or maintaining a streamlined document body, ParsedownExtended offers the flexibility to suit your formatting preferences.

docs/Configuration/Headings.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,4 +76,3 @@ Define a blacklist for heading IDs:
7676
$ParsedownExtended->config()->set('headings.auto_anchors.blacklist', ['my_blacklisted_header_id', 'another_blacklisted_id']);
7777
```
7878

79-
This configuration gives you complete control over how headings are processed and rendered in your Markdown documents, allowing you to tailor the content hierarchy and linking behavior to your specific needs.

docs/Configuration/Images.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,5 +47,3 @@ To prevent Markdown syntax from being processed as images, effectively disabling
4747
```php
4848
$ParsedownExtended->config()->set('images', false);
4949
```
50-
51-
This configuration provides you with the flexibility to control whether images are included in your Markdown documents, ensuring that your content is presented exactly as you intend.

docs/Configuration/Links.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,4 @@ To disable the automatic conversion of email addresses into mailto links:
4040
$ParsedownExtended->config()->set('links', [
4141
'email_links' => false
4242
]);
43-
```
44-
45-
Using the full syntax like this ensures that users understand how to properly apply the settings within their specific instance of `ParsedownExtended`, reducing confusion and making your documentation more practical and user-friendly.
43+
```

docs/Configuration/Lists.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,4 +56,3 @@ To disable task list processing:
5656
$ParsedownExtended->config()->set('lists.tasks', false);
5757
```
5858

59-
This documentation ensures that users have the correct context and syntax for configuring list processing in their Markdown documents using ParsedownExtended.

0 commit comments

Comments
 (0)