├── .gitignore ├── CHANGELOG.md ├── README.md ├── multicalendar.inx ├── multicalendar.py └── multicalendar_libs └── convert.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemtech/inkscape-multicalendar/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemtech/inkscape-multicalendar/HEAD/README.md -------------------------------------------------------------------------------- /multicalendar.inx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemtech/inkscape-multicalendar/HEAD/multicalendar.inx -------------------------------------------------------------------------------- /multicalendar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemtech/inkscape-multicalendar/HEAD/multicalendar.py -------------------------------------------------------------------------------- /multicalendar_libs/convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemtech/inkscape-multicalendar/HEAD/multicalendar_libs/convert.py --------------------------------------------------------------------------------