Fix typo/formatting

This commit is contained in:
Daniel Rudolf 2015-10-09 20:51:07 +02:00
parent aec024a793
commit 15515ff3fd
2 changed files with 6 additions and 6 deletions

View file

@ -83,15 +83,15 @@ There are also certain variables that you can use in your text files:
* <code>&#37;base_url&#37;</code> - The URL to your Pico site; internal links * <code>&#37;base_url&#37;</code> - The URL to your Pico site; internal links
can be specified using <code>&#37;base_url&#37;?sub/page</code> can be specified using <code>&#37;base_url&#37;?sub/page</code>
* <code>&#37;theme_url&#37;</code> - The URL to the currently used theme * <code>&#37;theme_url&#37;</code> - The URL to the currently used theme
* <code>&#37;meta.* &#37;</code> - Access any meta variable of the current page, * <code>&#37;meta.*&#37;</code> - Access any meta variable of the current page,
e.g. <code>&#37;meta.author&#37;</code> is replaced with `Joe Bloggs` e.g. <code>&#37;meta.author&#37;</code> is replaced with `Joe Bloggs`
### Blogging ### Blogging
Pico is not blogging software - but makes it very easy for you to use it as a Pico is not blogging software - but makes it very easy for you to use it as a
blog. You can find many plugins out there implementing typical blog. You can find many plugins out there implementing typical blogging
blogging features like authentication, tagging, pagination and social plugins. features like authentication, tagging, pagination and social plugins. See the
See the below Plugins section for details. below Plugins section for details.
If you want to use Pico as a blogging software, you probably want to do If you want to use Pico as a blogging software, you probably want to do
something like the following: something like the following:

View file

@ -28,7 +28,7 @@ class DummyPlugin extends AbstractPicoPlugin
protected $dependsOn = array(); protected $dependsOn = array();
/** /**
* Triggered after has Pico loaded all available plugins * Triggered after Pico has loaded all available plugins
* *
* This event is triggered nevertheless the plugin is enabled or not. * This event is triggered nevertheless the plugin is enabled or not.
* It is NOT guaranteed that plugin dependencies are fulfilled! * It is NOT guaranteed that plugin dependencies are fulfilled!
@ -129,7 +129,7 @@ class DummyPlugin extends AbstractPicoPlugin
} }
/** /**
* Triggered when Pico reads its known meta/header fields * Triggered when Pico reads its known meta header fields
* *
* @see Pico::getMetaHeaders() * @see Pico::getMetaHeaders()
* @param array<string> &$headers list of known meta header fields * @param array<string> &$headers list of known meta header fields