I’m currently migrating my blog from Jekyll to Pelican and try hard to preserve old filenames. One of these is my PGP key called gergely@polonkai.eu.asc. In my about page i added
You can download it `here <{static}../gergely@polonkai.eu.asc>`_
.. include:: ../gergely@polonkai.eu.asc
:code: text
The file gets included (the content appears on the page), the link on the generated page references the correct filename, but the file does not exist, and i get this warning:
WARNING: Cannot get modification stamp for /home/polesz/Projects/blog/content/gergely&
| FileNotFoundError: [Errno 2] No such file or directory: '/home/polesz/Projects/blog/content/gergely&'
If i escape the @ character as %40 or using a backslash (\@) the problem remains.
I’m currently migrating my blog from Jekyll to Pelican and try hard to preserve old filenames. One of these is my PGP key called
gergely@polonkai.eu.asc. In my about page i addedThe file gets included (the content appears on the page), the link on the generated page references the correct filename, but the file does not exist, and i get this warning:
If i escape the
@character as%40or using a backslash (\@) the problem remains.