diff --git a/src/Plugin/Editor/editor_md.php b/src/Plugin/Editor/editor_md.php
index 812a4d6..49f975f 100644
--- a/src/Plugin/Editor/editor_md.php
+++ b/src/Plugin/Editor/editor_md.php
@@ -1,5 +1,7 @@
 <?php
+
 namespace Drupal\editor_md\Plugin\Editor;
+
 use Drupal\Core\Extension\ModuleHandlerInterface;
 use Drupal\Core\Form\FormStateInterface;
 use Drupal\Core\Language\LanguageManagerInterface;
@@ -8,6 +10,7 @@ use Drupal\editor\Plugin\EditorBase;
 use Drupal\Core\Plugin\ContainerFactoryPluginInterface;
 use Drupal\editor\Entity\Editor;
 use Symfony\Component\DependencyInjection\ContainerInterface;
+
 /**
  * Defines a SimpleMDE-based text editor for Drupal.
  *
@@ -41,6 +44,7 @@ class editor_md extends EditorBase implements ContainerFactoryPluginInterface {
    * @var \Drupal\Core\Render\RendererInterface
    */
   protected $renderer;
+
   /**
    * Constructs a Drupal\Component\Plugin\PluginBase object.
    *
@@ -63,6 +67,7 @@ class editor_md extends EditorBase implements ContainerFactoryPluginInterface {
     $this->languageManager = $language_manager;
     $this->renderer = $renderer;
   }
+
   /**
    * {@inheritdoc}
    */
@@ -76,14 +81,16 @@ class editor_md extends EditorBase implements ContainerFactoryPluginInterface {
       $container->get('renderer')
     );
   }
+
   /**
    * {@inheritdoc}
    */
   public function getDefaultSettings() {
     return [
-      'saveHTMLToTextarea' => false,
+      'saveHTMLToTextarea' => FALSE,
     ];
   }
+
   /**
    * {@inheritdoc}
    */
@@ -96,12 +103,14 @@ class editor_md extends EditorBase implements ContainerFactoryPluginInterface {
     ];
     return $form;
   }
+
   /**
    * {@inheritdoc}
    */
   public function settingsFormSubmit(array $form, FormStateInterface $form_state) {
 
   }
+
   // @codingStandardsIgnoreStart
   /**
    * {@inheritdoc}
@@ -112,6 +121,7 @@ class editor_md extends EditorBase implements ContainerFactoryPluginInterface {
     $js_settings['saveHTMLToTextarea'] = (bool) $settings['saveHTMLToTextarea'];
     return $js_settings;
   }
+
   /**
    * {@inheritdoc}
    */
@@ -122,4 +132,5 @@ class editor_md extends EditorBase implements ContainerFactoryPluginInterface {
     ];
     return $libraries;
   }
+
 }
