simplify readme
This commit is contained in:
parent
a4756b8ec4
commit
c279cebf0a
2 changed files with 6 additions and 6 deletions
10
readme.md
10
readme.md
|
@ -1,11 +1,15 @@
|
||||||
RSSCAR
|
RSSCAR
|
||||||
======
|
======
|
||||||
### *Really Simple Syndication Crawler-Aided Reader*
|
### *RSS Crawler-Aided Reader*
|
||||||
|
|
||||||
RSSCAR is a new kind of RSS reader. [RSS is fantastic](https://gabe.rocks/tech/rss-love) but a huge problem is that it lacks *discovery*. With relatively simple client-side crawling, it is trivial to find additional publications related to your own interests.
|
RSSCAR is a new kind of RSS reader. [RSS is fantastic](https://gabe.rocks/tech/rss-love) but a huge problem is that it lacks *discovery*. With relatively simple client-side crawling, it is trivial to find additional publications related to your own interests.
|
||||||
|
|
||||||
In short: **RSSCAR is to be the RSS reader built for the modern independent web!**
|
In short: **RSSCAR is to be the RSS reader built for the modern independent web!**
|
||||||
|
|
||||||
|
### Posts:
|
||||||
|
- [Trying out iced](https://gabe.rocks/tech/trying-out-iced/)
|
||||||
|
- [Help me build the best desktop RSS client!](https://gabe.rocks/tech/rss-help)
|
||||||
|
|
||||||
This project began as my own way to learn [Rust](https://www.rust-lang.org/) & [iced](https://iced.rs) by building a great RSS desktop client.
|
This project began as my own way to learn [Rust](https://www.rust-lang.org/) & [iced](https://iced.rs) by building a great RSS desktop client.
|
||||||
|
|
||||||
This Project is FAR from complete ⏳
|
This Project is FAR from complete ⏳
|
||||||
|
@ -15,7 +19,3 @@ It's got a long way to go, but progress is ongoing.
|
||||||
|
|
||||||
|
|
||||||
Currently The best way to stay up to date on this would be to follow my [tech only feed](https://gabe.rocks/tech/index.xml)
|
Currently The best way to stay up to date on this would be to follow my [tech only feed](https://gabe.rocks/tech/index.xml)
|
||||||
|
|
||||||
### Posts:
|
|
||||||
- [Trying out iced](https://gabe.rocks/tech/trying-out-iced/)
|
|
||||||
|
|
||||||
|
|
|
@ -63,7 +63,7 @@ pub fn content_area(content: &Vec<Content>) -> iced::widget::Container<Message>
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
container(
|
container(
|
||||||
Column::with_children(children)
|
Column::with_children(children).spacing(5)
|
||||||
)
|
)
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue