Link to images in RSS output #1
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Currently, a post with images renders as:
It should be:
The file and affected function is here:
https://git.32bit.cafe/likho/microblog.py/src/branch/rss_1/src/rss.py#L39
I'm interested in contributing. What configuration in settings.toml should I use to get "https://sub.domain.tld/" ?
This is my public key:
8M5cnyAzRyxZYghZayTcedek2Lgk3HqAZPvtzXMWm6va:4LA
Hi, @eloitor
The setting that would get you a domain name is
rss.url
. A subset of the config file is passed to the RSS function.https://git.32bit.cafe/likho/microblog.py/src/branch/rss_1/src/rss.py#L39
Ah. I overlooked.
https://sub.domain.tld
https://yourdomain.tld
Should not indicate two different websites.
They should be the same website e.g what the microblog is generated for.
Basically, an image will render with
<img>
tags when generating the html page(s), but should render as links for someone to click on when using an RSS client.Why not generate rss and atom at the same time?
The files are named the same between RSS and Atom e.g
feeds/tagname.xml
.Also generating two files for each tag is excessive.
Done by pull request #4