https://github.com/hmerritt/go-ics-to-markdown
ICS->Markdown | Convert a calendar ICS file into a Markdown table
https://github.com/hmerritt/go-ics-to-markdown
Last synced: 2 months ago
JSON representation
ICS->Markdown | Convert a calendar ICS file into a Markdown table
- Host: GitHub
- URL: https://github.com/hmerritt/go-ics-to-markdown
- Owner: hmerritt
- License: mit
- Created: 2024-08-14T10:44:35.000Z (10 months ago)
- Default Branch: master
- Last Pushed: 2024-08-20T17:06:21.000Z (10 months ago)
- Last Synced: 2024-08-21T12:42:15.538Z (9 months ago)
- Language: Go
- Homepage:
- Size: 89.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Go Calendar ICS -> Markdown
CLI program to convert an ICS calendar file into a markdown table.
[Download binaries here 💾](https://github.com/hmerritt/go-ics-to-markdown/releases)
## Example usage
Show help:
```bash
$ ics-to-markdown
```Convert ICS file to markdown:
```bash
$ ics-to-markdown run
```## Developer setup
Setup by running the following bootstrap commands:
```bash
$ go install github.com/magefile/mage
$ mage -v bootstrap
```Local debug build:
```bash
$ mage -v build:debug
```Cross-platform release builds (`release` zips up build):
```bash
$ mage -v build:release && mage -v release
```