From 481d29a7b43870fd611dfa6b7c346105eb1e83e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Milo=C5=A1=20Jovanovi=C4=87?= Date: Sun, 22 Sep 2024 20:37:36 +0200 Subject: [PATCH] Fixing MD047 (markdown files should end with a new new line) error. --- Lombiq.HelpfulExtensions/Extensions/CodeGeneration/Readme.md | 2 +- Lombiq.HelpfulExtensions/Extensions/ContentSets/Readme.md | 2 +- Lombiq.HelpfulExtensions/Extensions/ContentTypes/Readme.md | 2 +- Lombiq.HelpfulExtensions/Extensions/Emails/Readme.md | 2 +- Lombiq.HelpfulExtensions/Extensions/Flows/Readme.md | 2 +- .../Extensions/OrchardRecipeMigration/Readme.md | 2 +- Lombiq.HelpfulExtensions/Extensions/Security/Readme.md | 2 +- Lombiq.HelpfulExtensions/Extensions/ShapeTracing/Readme.md | 2 +- Lombiq.HelpfulExtensions/Extensions/TargetBlank/Readme.md | 2 +- Lombiq.HelpfulExtensions/Extensions/Widgets/Readme.md | 2 +- Lombiq.HelpfulExtensions/Extensions/Workflows/Readme.md | 2 +- 11 files changed, 11 insertions(+), 11 deletions(-) diff --git a/Lombiq.HelpfulExtensions/Extensions/CodeGeneration/Readme.md b/Lombiq.HelpfulExtensions/Extensions/CodeGeneration/Readme.md index 81a321b..a802cac 100644 --- a/Lombiq.HelpfulExtensions/Extensions/CodeGeneration/Readme.md +++ b/Lombiq.HelpfulExtensions/Extensions/CodeGeneration/Readme.md @@ -4,4 +4,4 @@ Generates migration code from content definitions. You can use this to create (or edit) a content type on the admin and then move its creation to a migration class. Generated migration code is displayed under the content types' editors, just enable the feature. Check out [this demo video](https://www.youtube.com/watch?v=KOlsLaIzgm8) to see this in action. -![Content definition code generation textbox on the admin, showing generated migration code for the Page content type.](../../../Docs/Attachments/ContentTypeCodeGeneration.png) \ No newline at end of file +![Content definition code generation textbox on the admin, showing generated migration code for the Page content type.](../../../Docs/Attachments/ContentTypeCodeGeneration.png) diff --git a/Lombiq.HelpfulExtensions/Extensions/ContentSets/Readme.md b/Lombiq.HelpfulExtensions/Extensions/ContentSets/Readme.md index db4c66d..c908960 100644 --- a/Lombiq.HelpfulExtensions/Extensions/ContentSets/Readme.md +++ b/Lombiq.HelpfulExtensions/Extensions/ContentSets/Readme.md @@ -17,4 +17,4 @@ The latter can be used even if you don't have access to the code, e.g. on DotNes ## Content Set Content Picker Field -You can add this content field to any content item that also has a Content Set part. The field's technical name should be the same as the attached part's technical name. Besides that, no further configuration is needed. If there are available variants for a content item with this field, it will display a comma separated list of links where the option names are the link text. \ No newline at end of file +You can add this content field to any content item that also has a Content Set part. The field's technical name should be the same as the attached part's technical name. Besides that, no further configuration is needed. If there are available variants for a content item with this field, it will display a comma separated list of links where the option names are the link text. diff --git a/Lombiq.HelpfulExtensions/Extensions/ContentTypes/Readme.md b/Lombiq.HelpfulExtensions/Extensions/ContentTypes/Readme.md index 72e3ba8..9e842e2 100644 --- a/Lombiq.HelpfulExtensions/Extensions/ContentTypes/Readme.md +++ b/Lombiq.HelpfulExtensions/Extensions/ContentTypes/Readme.md @@ -4,4 +4,4 @@ Includes basic content types that are added by built-in Orchard Core recipes tho Includes: -- Page: Highly customizable page content type with FlowPart and AutoroutePart. \ No newline at end of file +- Page: Highly customizable page content type with FlowPart and AutoroutePart. diff --git a/Lombiq.HelpfulExtensions/Extensions/Emails/Readme.md b/Lombiq.HelpfulExtensions/Extensions/Emails/Readme.md index a6ef27d..a21830f 100644 --- a/Lombiq.HelpfulExtensions/Extensions/Emails/Readme.md +++ b/Lombiq.HelpfulExtensions/Extensions/Emails/Readme.md @@ -27,4 +27,4 @@ To add inline styles include: ## Deferred email sending -Use the `ShellScope.Current.SendEmailDeferred()` for sending emails. It'll send emails after the shell scope has ended without blocking the request. \ No newline at end of file +Use the `ShellScope.Current.SendEmailDeferred()` for sending emails. It'll send emails after the shell scope has ended without blocking the request. diff --git a/Lombiq.HelpfulExtensions/Extensions/Flows/Readme.md b/Lombiq.HelpfulExtensions/Extensions/Flows/Readme.md index 25b0578..c7ff009 100644 --- a/Lombiq.HelpfulExtensions/Extensions/Flows/Readme.md +++ b/Lombiq.HelpfulExtensions/Extensions/Flows/Readme.md @@ -2,4 +2,4 @@ Adds additional styling capabilities to the OrchardCore.Flows feature by making it possible to add classes to widgets in the Flow Part editor. Just add `AdditionalStylingPart` to the content type using `FlowPart`. -![Custom classes editor on a widget contained in Flow Part.](../../../Docs/Attachments/FlowPartCustomClasses.png) \ No newline at end of file +![Custom classes editor on a widget contained in Flow Part.](../../../Docs/Attachments/FlowPartCustomClasses.png) diff --git a/Lombiq.HelpfulExtensions/Extensions/OrchardRecipeMigration/Readme.md b/Lombiq.HelpfulExtensions/Extensions/OrchardRecipeMigration/Readme.md index 042650f..e6d7a4e 100644 --- a/Lombiq.HelpfulExtensions/Extensions/OrchardRecipeMigration/Readme.md +++ b/Lombiq.HelpfulExtensions/Extensions/OrchardRecipeMigration/Readme.md @@ -29,4 +29,4 @@ Migrating users from Orchard 1 is also possible with this feature: Import the sa Each generated user will have the corresponding email, user-name, roles, and a new random password. **Keep in mind that in Orchard 1, user-names could contain any characters, but in Orchard Core, it is limited by default.** [Check out the default configuration](https://github.com/OrchardCMS/OrchardCore/blob/main/src/OrchardCore.Modules/OrchardCore.Setup/Startup.cs#L44) and adjust it in your application if needed. -If your use-case would be different than what's done in the default user converter, implement the `IOrchardUserConverter` service, and the default one won't be executed. \ No newline at end of file +If your use-case would be different than what's done in the default user converter, implement the `IOrchardUserConverter` service, and the default one won't be executed. diff --git a/Lombiq.HelpfulExtensions/Extensions/Security/Readme.md b/Lombiq.HelpfulExtensions/Extensions/Security/Readme.md index 8dcbcb9..bbf23e0 100644 --- a/Lombiq.HelpfulExtensions/Extensions/Security/Readme.md +++ b/Lombiq.HelpfulExtensions/Extensions/Security/Readme.md @@ -12,4 +12,4 @@ _contentDefinitionManager.AlterTypeDefinition("Page", type => type .WithSettings(new StrictSecuritySettings { Enabled = true })); ``` -You can also enable it by going to the content type editor on the admin side and checking the _Strict Securable_ checkbox. \ No newline at end of file +You can also enable it by going to the content type editor on the admin side and checking the _Strict Securable_ checkbox. diff --git a/Lombiq.HelpfulExtensions/Extensions/ShapeTracing/Readme.md b/Lombiq.HelpfulExtensions/Extensions/ShapeTracing/Readme.md index 6011c87..f802853 100644 --- a/Lombiq.HelpfulExtensions/Extensions/ShapeTracing/Readme.md +++ b/Lombiq.HelpfulExtensions/Extensions/ShapeTracing/Readme.md @@ -1,3 +1,3 @@ # Shape Tracing Helpful Extensions -Adds a dump of metadata to the output about every shape. This will help you understand how a shape is displayed and how you can override it. Just check out the HTML output. You can see a video demo of this feature in action [on YouTube](https://www.youtube.com/watch?v=WI4TEKVc9SA). \ No newline at end of file +Adds a dump of metadata to the output about every shape. This will help you understand how a shape is displayed and how you can override it. Just check out the HTML output. You can see a video demo of this feature in action [on YouTube](https://www.youtube.com/watch?v=WI4TEKVc9SA). diff --git a/Lombiq.HelpfulExtensions/Extensions/TargetBlank/Readme.md b/Lombiq.HelpfulExtensions/Extensions/TargetBlank/Readme.md index 349d462..8a7a1ea 100644 --- a/Lombiq.HelpfulExtensions/Extensions/TargetBlank/Readme.md +++ b/Lombiq.HelpfulExtensions/Extensions/TargetBlank/Readme.md @@ -1,3 +1,3 @@ # Target blank -Gives all external links the `target="_blank"` attribute. \ No newline at end of file +Gives all external links the `target="_blank"` attribute. diff --git a/Lombiq.HelpfulExtensions/Extensions/Widgets/Readme.md b/Lombiq.HelpfulExtensions/Extensions/Widgets/Readme.md index 7ab432e..ecf32d5 100644 --- a/Lombiq.HelpfulExtensions/Extensions/Widgets/Readme.md +++ b/Lombiq.HelpfulExtensions/Extensions/Widgets/Readme.md @@ -7,4 +7,4 @@ Includes: - ContainerWidget: Works as a container for further widgets. It has a FlowPart attached to it so it can contain additional widgets as well. - HtmlWidget: Adds HTML editing and displaying capabilities using a WYSIWYG editor. - LiquidWidget: Adds Liquid code editing and rendering capabilities. -- MenuWidget: Renders a Bootstrap navigation menu as a widget using the provided `MenuItem`s. \ No newline at end of file +- MenuWidget: Renders a Bootstrap navigation menu as a widget using the provided `MenuItem`s. diff --git a/Lombiq.HelpfulExtensions/Extensions/Workflows/Readme.md b/Lombiq.HelpfulExtensions/Extensions/Workflows/Readme.md index 73ab3da..35e7419 100644 --- a/Lombiq.HelpfulExtensions/Extensions/Workflows/Readme.md +++ b/Lombiq.HelpfulExtensions/Extensions/Workflows/Readme.md @@ -1,3 +1,3 @@ # Reset Password activity -Adds a workflow activity that generates a reset password token for the specified user. You can define the source of the User object using a JavaScript expression. It will set the token and the URL to the workflow `LastResult` property and optionally it can set them to the `Properties` dictionary to a key that you define as an activity parameter. \ No newline at end of file +Adds a workflow activity that generates a reset password token for the specified user. You can define the source of the User object using a JavaScript expression. It will set the token and the URL to the workflow `LastResult` property and optionally it can set them to the `Properties` dictionary to a key that you define as an activity parameter.