Skip to content

A Clojure library to render iCalendar objects as defined by RFC 2445.

Notifications You must be signed in to change notification settings

practicalli-johnny/clj-ical

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Here is a Clojure library to produce iCalendar objects, as defined by RFC 2445.

=> (use 'clj-ical.format)

Create a VCALENDAR with some VEVENTS

=> (write-object 
     [:vcalendar 
       [:vevent 
         [:summary "Bastille Day Party"]]])

will produce

BEGIN:VCALENDAR
BEGIN:VEVENT
SUMMARY:Bastille Day Party
END:VEVENT
END:VCALENDAR

The library correctly obeys all requirements of the RFC 2445 specification, such as

  • long-line folding
  • property parameters
  • CRLF line termination

About

A Clojure library to render iCalendar objects as defined by RFC 2445.

Resources

Code of conduct

Stars

Watchers

Forks

Sponsor this project

 

Packages

No packages published