Rafael G. Martins
Rafael G. Martins
Hi, I agree that this is useful and I have plans to implement it. Thanks. P.S.: I know that this is not exactly what you want, but you can take...
Hi! 1 is very easy to fix, will do it. 2 same thing. I tend to not rely on this metadata for my websites because I store files in git,...
1 fixed in 80017f034146b50fdc441c96636f1098adf7037e and bc23293bb178b6abcafa0f67d432cbff6ac3c861
as I described in the commit message, this breaks *a lot* of blogs using the templates I produced, because they all relied on `ifdef TITLE`, I'm going to keep `TITLE`...
I think I found a solution for the cjk issue. I will keep untouched any non-ascii char. is it enough?
Hello, I'll investigate it, but looks like you're doing it wrong. You should set the pagination options in the `[settings]` block, instead of setting the blogc variables manually. `blogc-make` does...
take a look at the `posts_per_page` option here: https://blogc.rgm.io/man/blogcfile.5.html
This can also be reproduced by running: ``` pip install https://files.pythonhosted.org/packages/02/f0/92eb7e55f665de688120590bcee95b6704f8c6c07ae07d1255ecf734997e/pytorch_forecasting-0.10.3.tar.gz ``` The normal `pip install pytorch-forecasting` works fine because pip uses the wheel available, and as it is python...
yes, this is not supported, because lists are block elements, and the list items are parsed as inline elements. allowing block elements inside list items is not really a good...
you are probably using a non-utf8 locale, you can check running ``` $ locale ``` or just trying to run it like this: ``` LC_ALL=en_US.utf8 blohg ... ```