Deniz Turgut

Results 127 comments of Deniz Turgut

> Until then I think I'm going to downgrade my Pelican version. But why? `pelican` is keeping backwards compatibility with old style plugins for a while.

I had some thoughts about PyPi installable plugin structure for a while. This issue looks like a good place to share for comments. The organization from [this](https://github.com/getpelican/pelican/issues/1488#issuecomment-473331583) comment (https://github.com/pelican-plugins) is...

If the namespace idea can become reality, actual import would look like: ```python import pelican.plugins.render_math ``` We can do some magic in `pelican` to keep `PLUGINS = ['render_math']` working (instead...

Yes, it is possible. I made a simple example for testing. See: https://github.com/avaris/namespace_plugins So, people would manage plugins by installing/uninstalling them? Sounds good. We would still need `PLUGINS` for the...

Did you try what the error says? > Please install htmlize from https://github.com/hniksic/emacs-htmlize

OK, just making sure :).

When you enable `"jinja2.ext.i18n"`, you need [some additional setup](https://jinja.palletsprojects.com/en/master/extensions/#i18n-extension). `i18n_subsites` [does this](https://github.com/getpelican/pelican-plugins/blob/ac0246dc9ea19dbb288926d7dd286ef17efe3e4f/i18n_subsites/i18n_subsites.py#L273). However, `jinja2content` [creates its own environment](https://github.com/getpelican/pelican-plugins/blob/master/jinja2content/jinja2content.py#L16), i.e. it creates an environment with `i18n` but there is no setup...

Related: getpelican/pelican#2797 Workaround in the mean time, define `PLUGINS` in pelicanconf. * If you don't use plugins, `PLUGINS = []`. * If you use the newer auto-detected plugins, it should...

If the authors want those plugins to be `pip`-only, then they should remove submodules. We can extend readme with a list of "`pip`-installable-plugins". Otherwise, I don't see the point of...

I feel like the decision to "keep submodule or remove it in favor of `pip`" should be left to the author of the plugin. > Also, for pelican-meetup-info, I tested...