-
-
Notifications
You must be signed in to change notification settings - Fork 542
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Include quoted tweet body in RSS #820
base: master
Are you sure you want to change the base?
Conversation
@gil - it looks great, would be awesome to have it included :-) |
<hr/> | ||
<p>Quoting: <a href="${urlPrefix}${quoteLink}">${cfg.hostname}${quoteLink}</a></p> | ||
${renderRssTweet(get(tweet.quote), cfg)} | ||
#end if |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let me start by saying that this is the sole reason it's keeping me away from using Nitter's RSS feeds and I'm grateful you pointed in the right direction here. I hope this get's merged as soon as possible 🤞
My 2 cents here would be that this should use more semantically correct element:
<hr/> | |
<p>Quoting: <a href="${urlPrefix}${quoteLink}">${cfg.hostname}${quoteLink}</a></p> | |
${renderRssTweet(get(tweet.quote), cfg)} | |
#end if | |
<blockquote> | |
<p> | |
$renderRssTweet(get(tweet.quote), cfg)} | |
</p> | |
<footer> | |
— <cite><a href="${urlPrefix}${quoteLink}">${cfg.hostname}${quoteLink}</a></cite> | |
</footer> | |
</blockquote> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the suggestion! It looks much better than what I did. Sorry I didn't merge it before, I was busy and then Twitter started breaking Nitter. Let's see if things will get more stable soon and I'll go back to this!
I need it, that's wonderful. |
I hope this get's merged |
Yeah, me too @koszzz ! But at this point, I'm not even sure if Nitter will ever be stable again so that we can use it for RSS 😢 |
this patch seems to work for my usecases and is now deployed on |
I appreciate this is a few months old now but this is something I'm very interested in as I use my local Nitter instance for rss. When I try and apply manually and compile I'm getting an error:
If I try and apply automatically the diff fails, presumably the code has moved on since?
I'm using the latest guest_accounts branch. |
@thomas-333 yeah, I imagined that would happen eventually. But given that Nitter future is uncertain (wasn't it discontinued a few weeks ago?) and RSS was never the focus, I'm not sure if it's worth investing on this anymore. You could probably check the current |
Thanks for the reply @gil. Nitter is working at least for now with real accounts which is fine for my personal use in generating rss feeds. I'm hoping it will continue it at least some form. After more testing your original code works fine. The problem was with @ninboy changes.
and the Also I should say thanks for this. This makes rss feeds so much better :) |
Hey folks! This is my quick attempt of displaying quoted tweets on RSS results. As I've said, I don't know this codebase nor have worked with Nim before, so I'm sorry for any problems it may cause. So far, it's working well on my test instance and I like the results much more. This is how it looks:
Before
After
Fixes #132