Skip to content

Commit

Permalink
Update markdown.php
Browse files Browse the repository at this point in the history
  • Loading branch information
remcotolsma committed Apr 14, 2021
1 parent 6134df2 commit 7fb046b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions templates/markdown.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@
echo $eol;

if ( empty( $actions ) ) {
echo '*This project does not contain any WordPress actions.*';
echo '*This project does not contain any WordPress actions.*', $eol;
echo $eol;
} else {
foreach ( $actions as $hook ) {
include __DIR__ . '/parts/markdown-hook.php';
Expand All @@ -46,7 +47,8 @@
echo $eol;

if ( empty( $filters ) ) {
echo '*This project does not contain any WordPress filters.*';
echo '*This project does not contain any WordPress filters.*', $eol;
echo $eol;
} else {
foreach ( $filters as $hook ) {
include __DIR__ . '/parts/markdown-hook.php';
Expand Down

0 comments on commit 7fb046b

Please sign in to comment.