Luis Menina
Luis Menina
Just using `metadata` in `field` is not enough, there's [one occurence](https://github.com/lovasoa/marshmallow_dataclass/blob/ed1ab5adaac9a10f26e49723abd839fbd225202e/marshmallow_dataclass/__init__.py#L402) where marshmallow_dataclass doesn't forward the metadata using the `metadata` parameter.
Seems there's much more. In fact, every occurence of `**metadata` probably needs to be replaced by `metadata=metadata`, and there are quite a few.
This is the error logs I got for my last run (which took ages to complete). [packer-win10.log](https://github.com/jborean93/packer-windoze/files/1672931/packer-win10.log)
Well, I left that job 2 and ½ years ago, so I have no access to that stuff anymore.
Really, this needs to be split. I'm currently migrating my blog from dotclear to pelican, and the import script is just not doing enough by default. Having it as a...
I've started https://github.com/liberforce/blog2pelican based on pelican import script. I fixed tags and creation date for now for the dotclear parser (based on the format of my own dotclear blog backup)....
Hi, thanks for your reactivity. I have one problem with your fix though. I'm in a corporate environment, using Ubuntu 14.04, which ships jinja 2.7.2, meaning the autoescape trick won't...
Hi, I've tried but can't get your development branch installed. I think you forgot to update the setup.py to reflect the current source tree. The MANIFEST.in also contains a reference...
Ok, just found a way to test.
Ok, I think I understand a bit better how that autoescape feature works in jinja. The [auto-escape overrides](http://jinja.pocoo.org/docs/2.9/templates/#autoescape-overrides) was handled by an extension in jinja 2.4, and became a builtin...