Hi!
I’ am playing with kirby right now and wanted to write a kirbytext extension. I followed the tutorial in the documentation and noticed that it did not work. After some fiddling I decided to download a plugin (I choose this one) to test if it was my fault and it turns out that the plugin doesn’t work either. I am using MAMP with Apache for testing and developing, but I am not sure what causes this error.
If I wanna use the tag it just gets printed. For example:
I have following lines in my article.txt file:
# Test
Trying out stuff!
(code: test.html)
and it just gets printed out.
This is the folder structure:
site
├── ...
├── tags
│ └── code.php
├── ...
I have following custom contents in my config.php:
c::set('timezone', 'Europe/Berlin');
setlocale(LC_TIME, 'de_DE');
c::set('markdown.extra', true);
Any ideas?
PS: Hi everyone, first time working with kirby, I am really exited.