Skip to content

Commit

Permalink
fix plugin name
Browse files Browse the repository at this point in the history
  • Loading branch information
nliautaud committed Sep 16, 2017
1 parent 3ef9baf commit 47a2a7e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
# Pico Page Output
# Pico Output

Output the page content or data as raw, html, json or xml with `?output` in [Pico CMS](http://picocms.org).

## Installation

Copy `PicoPageOutput.php` to the `plugins/` directory of your Pico Project.
Copy `PicoOutput.php` to the `plugins/` directory of your Pico Project.

## Usage

Enable the plugin and the output formats in Pico `config.php`.

```php
$config['PicoPageOutput.enabled'] = true; // by default
$config['PicoPageOutput.enabledFormats'] = array('content', 'prepared');
$config['PicoOutput.enabled'] = true; // by default
$config['PicoOutput.enabledFormats'] = array('content', 'prepared');
```

Then add `?output=format` to any url.
Expand Down

0 comments on commit 47a2a7e

Please sign in to comment.