diff --git a/lib/Pico.php b/lib/Pico.php index 334d792cd1b373f3cef8f18b74a2eb8497d0e332..bcdb5e6ac84db013532691b36f2068e7e08e1a29 100644 --- a/lib/Pico.php +++ b/lib/Pico.php @@ -909,10 +909,9 @@ class Pico * Reads the data of all pages known to Pico * * The page data will be an array containing the following values: - *
-     * +----------------+--------+------------------------------------------+
+     *
      * | Array key      | Type   | Description                              |
-     * +----------------+--------+------------------------------------------+
+     * | -------------- | ------ | ---------------------------------------- |
      * | id             | string | relative path to the content file        |
      * | url            | string | URL to the page                          |
      * | title          | string | title of the page (YAML header)          |
@@ -923,8 +922,6 @@ class Pico
      * | date_formatted | string | formatted date of the page               |
      * | raw_content    | string | raw, not yet parsed contents of the page |
      * | meta           | string | parsed meta data of the page             |
-     * +----------------+--------+------------------------------------------+
-     * 
* * @see Pico::sortPages() * @see Pico::getPages() diff --git a/plugins/00-PicoDeprecated.php b/plugins/00-PicoDeprecated.php index 5240160dc9fedc4a28de7f6c6693c6cb2b208a63..a9a272df66aec2fb42fbd22a76bbd9558c6cd381 100644 --- a/plugins/00-PicoDeprecated.php +++ b/plugins/00-PicoDeprecated.php @@ -11,10 +11,9 @@ * can disable this plugin by calling {@link PicoDeprecated::setEnabled()}. * * The following deprecated events are triggered by this plugin: - *
- * +---------------------+-----------------------------------------------------------+
+ *
  * | Event               | ... triggers the deprecated event                         |
- * +---------------------+-----------------------------------------------------------+
+ * | ------------------- | --------------------------------------------------------- |
  * | onPluginsLoaded     | plugins_loaded()                                          |
  * | onConfigLoaded      | config_loaded($config)                                    |
  * | onRequestUrl        | request_url($url)                                         |
@@ -32,8 +31,6 @@
  * | onTwigRegistration  | before_twig_register()                                    |
  * | onPageRendering     | before_render($twigVariables, $twig, $templateName)       |
  * | onPageRendered      | after_render($output)                                     |
- * +---------------------+-----------------------------------------------------------+
- * 
* * Since Pico 1.0 the config is stored in {@path "config/config.php"}. This * plugin tries to read {@path "config.php"} in Pico's root dir and overwrites diff --git a/plugins/DummyPlugin.php b/plugins/DummyPlugin.php index f8ebb01c5ad55ecf3e768ecc36587e3c805ea76c..b1588eb21cad4a90c964afd841edbcc15992fa57 100644 --- a/plugins/DummyPlugin.php +++ b/plugins/DummyPlugin.php @@ -228,10 +228,9 @@ final class DummyPlugin extends AbstractPicoPlugin * Triggered when Pico reads a single page from the list of all known pages * * The `$pageData` parameter consists of the following values: - *
-     * +----------------+--------+------------------------------------------+
+     *
      * | Array key      | Type   | Description                              |
-     * +----------------+--------+------------------------------------------+
+     * | -------------- | ------ | ---------------------------------------- |
      * | id             | string | relative path to the content file        |
      * | url            | string | URL to the page                          |
      * | title          | string | title of the page (YAML header)          |
@@ -242,8 +241,6 @@ final class DummyPlugin extends AbstractPicoPlugin
      * | date_formatted | string | formatted date of the page               |
      * | raw_content    | string | raw, not yet parsed contents of the page |
      * | meta           | string | parsed meta data of the page             |
-     * +----------------+--------+------------------------------------------+
-     * 
* * @see DummyPlugin::onPagesLoaded() * @param array &$pageData data of the loaded page