Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/avdgaag/polites
Ruby gem for working with Ulysses files, converting them to HTML.
https://github.com/avdgaag/polites
nanoc ulysses
Last synced: 19 days ago
JSON representation
Ruby gem for working with Ulysses files, converting them to HTML.
- Host: GitHub
- URL: https://github.com/avdgaag/polites
- Owner: avdgaag
- License: mit
- Created: 2020-11-30T20:35:56.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2024-03-01T16:54:00.000Z (10 months ago)
- Last Synced: 2024-11-18T02:02:23.530Z (about 1 month ago)
- Topics: nanoc, ulysses
- Language: Ruby
- Homepage:
- Size: 18.2 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.txt
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Polites
Polites allows you to work with files generated by the [Ulysses](https://ulysses.app) writing application for macos.
Most importantly, this gem allows you to take Ulysses .ulyz files as input and transform them into HTML, all from Ruby. Additionally, you can extract embedded media files from the .ulyz file.
See the [API docs](https://rubydoc.info/gems/polites).
## Installation
Add this line to your application's Gemfile:
```ruby
gem 'polites'
```And then execute:
$ bundle install
Or install it yourself as:
$ gem install polites
## Usage
Transform a file to HTML:
```ruby
Polites::Convert.new.call('/path/to/file.ulyz')
# => (html content)
```Parse a sheet:
```ruby
Polites::File.open('/path/to/file.ulyz') do |f|
sheet = Polites::Parser.new.parse_sheet(f.content)
sheet.keywords # => ['Keyword1', 'Keyword2']
sheet.files # => ['1a3577ba004942ecb71d8a940cab4b1f']
Polites::HtmlFormatter.new.call(sheet)
# => (html content)
end
```## Usage with Nanoc
When using [Nanoc](https://nanoc.ws) you can install `polites-nanoc` so you can use a Ulysses [external folder](https://ulysses.app/tutorials/external-folders) as a Nanoc data source.
```ruby
gem 'polites-nanoc'
```Refer to the API docs for `Polites::Nanoc` for more information.
## Development
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
## Contributing
Bug reports and pull requests are welcome on GitHub at https://github.com/avdgaag/polites. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/avdgaag/polites/blob/master/CODE_OF_CONDUCT.md).
## License
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
## Code of Conduct
Everyone interacting in the Polites project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/avdgaag/polites/blob/master/CODE_OF_CONDUCT.md).