https://github.com/karitham/json2ini
take json, output ini
https://github.com/karitham/json2ini
Last synced: 2 months ago
JSON representation
take json, output ini
- Host: GitHub
- URL: https://github.com/karitham/json2ini
- Owner: karitham
- Created: 2024-05-09T08:26:07.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-05-09T08:30:09.000Z (about 1 year ago)
- Last Synced: 2025-01-22T05:29:47.148Z (4 months ago)
- Language: Go
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# json2ini
Takes a JSON document in the format
```json
{
"section": {
"key": "value"
}
}
```and transforms it into ini
```ini
[section]
key=value
```This is perfect for generating rclone config files for example.