diff --git a/lib/Pico.php b/lib/Pico.php index 8149876..7e4a7f5 100644 --- a/lib/Pico.php +++ b/lib/Pico.php @@ -1,95 +1,5 @@ getPlugin('PicoParsePagesContent')->setEnabled(false);` -# or adding `$config['PicoParsePagesContent.enabled'] = false;` to your -# `config.php`. -# - The meta headers are now parsed by the YAML component of the Symfony -# project (see #116), but still requires you to register new headers during -# the `onMetaHeaders` event. I'm uncertain about still requiring that. What -# do you think? -# - Meta header variables are now accessible in content files using `%meta.*%`, -# so you mustn't repeat yourself. You can now put an excerpt into the -# `description` meta variable and output the same content at the beginning -# of the article using `%meta.description%`. -# - I decided explicitly to NOT implement pages as objects ("stupidly simple", -# see above). Anyway, I think plugin developers shouldn't manipulate data in -# "wrong" events, this could lead us to unexpected behaviour. Sure, plugin -# developers still can do this, we're passing variables by reference, but -# it's not that obvious. I even thought about dereferencing the values after -# the corrosponding event was called, but that would be backward incompatible. -# What do you think? -# - How to fix the "composer problem" discussed in #221 and #223? There's a -# very simple solution: When creating a release on GitHub (after you've -# pushed the tag) you can upload "binaries". Simply execute composer locally, -# create a ZIP archive and upload the result as "binary". -# - I didn't care much about #110, #238, #239 and #240 because I simply don't -# need these features. But I think they are good ideas and the core should -# support this. Just my 2 cents :smile: -# - #201 and #231 should be closed - this can easily be achieved with plugins. -# In fact, there are already plugins adding support for these features... -# - Imo distinct documentations for users, theme designers and plugin devs is -# MUCH more important than unit tests... Pico is a project with just about -# 500 LoC (+ comments), such a manageable project doesn't necessarily require -# unit tests - they are nice to have, but that's it. Documentation should be -# the top priority! -# - Note: I'm no english native speaker. Maybe someone should look through my -# code comments :smile: -# - /** * Pico *