diff --git a/README.md b/README.md index 12afdeb..b0c1469 100644 --- a/README.md +++ b/README.md @@ -39,11 +39,11 @@ After Installing the Plugin add the snippet to your template. There are two snip To list all komments and webmentions: -`` +`` To show the komment form -`` +`` After adding the snippets, you may also want to add the stylesheet within the `` of your site: @@ -101,9 +101,9 @@ Next to komments directly on your page, there are some other features enabled by ### Receiving webmentions -To receive webmentions you have to install the [tratschtante plugin](https://github.com/mauricerenck/tratschtante) and configure it. Tratschtante will handle all the webmentions and normalize their data. Currently only webmention.io is supported. After installing tratschtante, komment will automaticly by informed about new webmentions. +**To receive webmentions you have to install the [tratschtante plugin](https://github.com/mauricerenck/tratschtante) and configure it.** Tratschtante will handle all the webmentions and normalize their data. Currently only webmention.io is supported. After installing tratschtante, komment will automaticly be informed about new webmentions. -Webmention support is enabled by default but won't work until you install tratschtante. +**Webmention support is enabled by default but won't work until you install tratschtante.** ### Sending Webmentions diff --git a/composer.json b/composer.json index 49ce4ad..ec1ede5 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,6 @@ { "name": "mauricerenck/komments", - "version": "0.9.0", + "version": "0.9.1", "description": "A comment and webmention plugin for Kirby 3", "type": "kirby-plugin", "license": "MIT", diff --git a/composer.lock b/composer.lock index aba0244..6afdc54 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "64f116d52c0b433ab0a0427a613a8563", + "content-hash": "3373d8ffaa4c2e8f5e21507b41ae7809", "packages": [ { "name": "getkirby/composer-installer", diff --git a/config/api.php b/config/api.php index 04af4ed..6888584 100644 --- a/config/api.php +++ b/config/api.php @@ -24,7 +24,7 @@ $pendingKomments[] = [ 'author' => $komment['author'], 'komment' => $komment['komment'], - 'kommentType' => $komment['kommenttype'], + 'kommentType' => $komment['kommentType'], 'image' => $komment['avatar'], 'title' => (string) $item->title(), 'url' => $item->panelUrl(), @@ -54,7 +54,7 @@ $spamKomments[] = [ 'author' => $komment['author'], 'komment' => $komment['komment'], - 'kommentType' => $komment['kommenttype'], + 'kommentType' => $komment['kommentType'], 'image' => $komment['avatar'], 'title' => (string) $item->title(), 'url' => $item->panelUrl(), diff --git a/package.json b/package.json index 2f29e4a..8b64ee2 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "komments", - "version": "0.9.0", + "version": "0.9.1", "description": "A comment and webmention plugin for Kirby 3", "main": "index.js", "author": "Maurice Renck",