You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
openring is a nice tool to create webring, I added it to my Franklin website. However, I noticed that Franklin websites are not able to being parsed by openring, while the ones built with Hugo, Jekylls or Quarto don't have any problem, here is an example for reproducibility (notice you have to install Go):
Everything works just fine with these blogs, but trying with at least one Franklin website like Viralinstruction, The Cedar Ledge, huijzer, or mine fail in the process
$>./openring \
-s https://bkamins.github.io/feed.xml \
-s https://jarbus.net/index.xml \
-s https://viralinstruction.com/feed.xml \
< in.html \
> out.html
2024/03/14 18:11:29 Fetching feeds...
2024/03/14 18:11:30 Fetched Blog by Bogumił Kamiński
2024/03/14 18:11:30 Fetched jarbus.net on
2024/03/14 18:11:31 Fetched
viralinstruction
2024/03/14 18:11:31 failed parsing canonical feed URL of the feed
Leaving the out.html empty as it was in the beginning.
Trying to see the code in openring.go and see where it fails, looks like is having a problem with parsing the links in Franklin websites
feedLink, err:=url.Parse(feed.Link)
log.Println(err) //I just Added to see the err elementiferr!=nil {
log.Fatal("failed parsing canonical feed URL of the feed")
}
compile and run it again give me this:
$>./openring \
-s https://bkamins.github.io/feed.xml \
-s https://jarbus.net/index.xml \
-s https://viralinstruction.com/feed.xml \
< in.html \
> out.html
2024/03/14 18:16:13 Fetching feeds...
2024/03/14 18:16:13 Fetched Blog by Bogumił Kamiński
2024/03/14 18:16:14 Fetched jarbus.net on
2024/03/14 18:16:14 Fetched
viralinstruction
2024/03/14 18:16:14 <nil>
2024/03/14 18:16:14 <nil>
2024/03/14 18:16:14 parse " https://viralinstruction.com/ ": first path segment in URL cannot contain colon
2024/03/14 18:16:14 failed parsing canonical feed URL of the feed
I am a bit lost where could be the problem.
The text was updated successfully, but these errors were encountered:
openring is a nice tool to create webring, I added it to my Franklin website. However, I noticed that Franklin websites are not able to being parsed by openring, while the ones built with Hugo, Jekylls or Quarto don't have any problem, here is an example for reproducibility (notice you have to install Go):
Everything works just fine with these blogs, but trying with at least one Franklin website like Viralinstruction, The Cedar Ledge, huijzer, or mine fail in the process
Leaving the out.html empty as it was in the beginning.
Trying to see the code in openring.go and see where it fails, looks like is having a problem with parsing the links in Franklin websites
compile and run it again give me this:
I am a bit lost where could be the problem.
The text was updated successfully, but these errors were encountered: