Skip to content

Commit 8fba94b

Browse files
committed
update namespace and ownership for Kirby’s update notifications feature
1 parent a5feb31 commit 8fba94b

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ Enhanced, extensible Markdown field for Kirby CMS. Now available in version 2!
5757
This version of the plugin requires PHP 8.0 and Kirby 3.6.0 or higher. The recommended way of installing is by using Composer:
5858

5959
```
60-
$ composer require k-community/markdown-field
60+
$ composer require fabianmichael/kirby-markdown-field
6161
```
6262

6363
Alternatively, download and copy this repository to `/site/plugins/markdown-field`

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "fabianmichael/markdown-field",
2+
"name": "fabianmichael/kirby-markdown-field",
33
"description": "Super-sophisticated markdown editor for Kirby 3",
44
"type": "kirby-plugin",
55
"version": "2.0.2",

extension-examples/custom-highlights/index.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
Kirby::plugin('my/custom-highlights', [
4-
'community.markdown-field.customHighlights' => [
4+
'fabianmichael.markdown-field.customHighlights' => [
55
/**
66
* Simple highlight, using regex.
77
*/

fields/markdown.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,12 +80,12 @@
8080
$highlights,
8181
array_map(
8282
fn($highlight) => is_callable($highlight) ? $highlight() : $highlight,
83-
$plugin->extends()['community.markdown-field.customHighlights'] ?? []
83+
$plugin->extends()['fabianmichael.markdown-field.customHighlights'] ?? []
8484
)
8585
);
8686
}
8787

88-
foreach (option('community.markdown-field.customHighlights', []) as $highlight) {
88+
foreach (option('fabianmichael.markdown-field.customHighlights', []) as $highlight) {
8989
$highlights[] = is_callable($highlight) ? $highlight() : $highlight;
9090
}
9191

src/index.js

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

0 commit comments

Comments
 (0)