Skip to content

Commit

Permalink
Merge branch 'release/1.0.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
Sommerregen committed Nov 18, 2015
2 parents f07d8d3 + 6175564 commit 953587c
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 6 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,15 @@
# v1.0.2
## 11/18/2015

2. [](#improved)
* Page specific options now respect the default configurations set in the admin panel
* `README.md` fixes

# v1.0.1
## 11/17/2015

3. [](#bugfix)
* Strips `[plugin:textformatter](..)` from content
* Strip Grav specific links like `[plugin:textformatter](..)` from content

# v1.0.0
## 11/16/2015
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ and use Twig instead, if necessary.
You can pass arguments to the plugin filter, namely the same arguments as available in the [textformatter.yaml](textformatter.yaml) file. For example

```
{{ page.content|textformatter({'bbcodes': false}) }}
{{ page.content|textformatter({'bbcodes': {'enabled' : false}}) }}
```
will disable the support for BBCodes.
Expand Down
2 changes: 1 addition & 1 deletion blueprints.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Text Formatter
version: 1.0.1
version: 1.0.2
description: "This plugin is a wrapper for [TextFormatter](https://github.com/s9e/TextFormatter), a library that supports BBCode, HTML and other markup via plugin. It handles emoticons, censors words, automatically embeds media and more."
icon: sticky-note
author:
Expand Down
2 changes: 1 addition & 1 deletion blueprints/textformatter.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ form:
type: toggle
label: PLUGINS.TEXTFORMATTER.PROCESS
highlight: 1
default: 1
'@config-default': plugins.textformatter.process
options:
1: PLUGIN_ADMIN.YES
0: PLUGIN_ADMIN.NO
Expand Down
4 changes: 2 additions & 2 deletions textformatter.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* TextFormatter v1.0.1
* TextFormatter v1.0.2
*
* This plugin is a wrapper for TextFormatter, a library that supports
* BBCode, HTML and other markup via plugin. Handles emoticons, censors
Expand All @@ -10,7 +10,7 @@
* http://benjamin-regler.de/license/
*
* @package TextFormatter
* @version 1.0.1
* @version 1.0.2
* @link <https://github.com/sommerregen/grav-plugin-textformatter>
* @author Benjamin Regler <sommerregen@benjamin-regler.de>
* @copyright 2015, Benjamin Regler
Expand Down

0 comments on commit 953587c

Please sign in to comment.