Fetch and save entry HTML content with metadata

And render the extracted HTML on the entry page in the frontend.
This commit is contained in:
2023-06-07 01:06:03 -04:00
parent 786f3a194f
commit 3f29138bd1
7 changed files with 516 additions and 12 deletions

View File

@@ -98,8 +98,6 @@ pub async fn main() -> Result<()> {
let args: Args = argh::from_env();
info!("hello?");
match args.commands {
Commands::AddFeed(args) => {
let feed = create_feed(
@@ -125,6 +123,7 @@ pub async fn main() -> Result<()> {
title: args.title,
url: args.url,
description: args.description,
html_content: None,
feed_id: args.feed_id,
},
)