Skip to content

Commit 88c0be3

Browse files
committed
bugfixes
1 parent 1aab8aa commit 88c0be3

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,11 @@ After Installing the Plugin add the snippet to your template. There are two snip
3939

4040
To list all komments and webmentions:
4141

42-
`<?php snippet(komments/webmention); ?>`
42+
`<?php snippet('komments/webmention'); ?>`
4343

4444
To show the komment form
4545

46-
`<?php snippet(komments/kommentform); ?>`
46+
`<?php snippet('komments/kommentform'); ?>`
4747

4848
After adding the snippets, you may also want to add the stylesheet within the `<head></head>` of your site:
4949

@@ -101,9 +101,9 @@ Next to komments directly on your page, there are some other features enabled by
101101

102102
### Receiving webmentions
103103

104-
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.
104+
**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.
105105

106-
Webmention support is enabled by default but won't work until you install tratschtante.
106+
**Webmention support is enabled by default but won't work until you install tratschtante.**
107107

108108
### Sending Webmentions
109109

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mauricerenck/komments",
3-
"version": "0.9.0",
3+
"version": "0.9.1",
44
"description": "A comment and webmention plugin for Kirby 3",
55
"type": "kirby-plugin",
66
"license": "MIT",

composer.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

config/api.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
$pendingKomments[] = [
2525
'author' => $komment['author'],
2626
'komment' => $komment['komment'],
27-
'kommentType' => $komment['kommenttype'],
27+
'kommentType' => $komment['kommentType'],
2828
'image' => $komment['avatar'],
2929
'title' => (string) $item->title(),
3030
'url' => $item->panelUrl(),
@@ -54,7 +54,7 @@
5454
$spamKomments[] = [
5555
'author' => $komment['author'],
5656
'komment' => $komment['komment'],
57-
'kommentType' => $komment['kommenttype'],
57+
'kommentType' => $komment['kommentType'],
5858
'image' => $komment['avatar'],
5959
'title' => (string) $item->title(),
6060
'url' => $item->panelUrl(),

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "komments",
3-
"version": "0.9.0",
3+
"version": "0.9.1",
44
"description": "A comment and webmention plugin for Kirby 3",
55
"main": "index.js",
66
"author": "Maurice Renck",

0 commit comments

Comments
 (0)