KO
|
EN
gitlite — search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
westbrook
★ 10
Open GitHub ↗
An RSS generator.
Download README (.md)
Explore Similar Repositories
TeaMi
:
A Facebook Messenger Clone with a Milk Tea Twist
Colorization_Tensorflow
:
No description available.
vue_basis-01
:
使用vue-cli快速搭建vue项目、vue组件通信实例
huiketong
:
huiketong 小程序
karmator_bot
:
Бот для Telegram который отвечает за подсчет кармы в чатах.
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
westbrook
?
Download (.md)
## westbrook This project is for generating RSS feeds. It is used by creating a westbrook:feed object, adding westbrook:item objects to the feed, then using westbrook:generate or westbrook:generate-to to write the XML feed to a string or file. I use it to generate feeds for Quicklisp build failure reports. ### Example ```lisp (let ((feed (make-instance 'feed :title "My Great Feed" :link "https://www.xach.com/" :description "My feed."))) (add-feed-item feed :title "An item" :description "Here is <a href='https://github.com/xach/vecto/'>vecto</a>!" :link "https://www.xach.com/lisp/" :guid "my-great-feed-item-1" :guid-permalink-p nil) (generate-to "rss.xml" feed)) ``` ### Feedback Development of westbrook takes place on [github](https://github.com/xach/westbrook/). If you find a bug, please report via [github issues](https://github.com/xach/westbrook/issues). You can also email me at [xach@xach.com](mailto:xach@xach.com). Enjoy!