Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nishidayuya/pandoc_binary_gem
https://github.com/nishidayuya/pandoc_binary_gem
pandoc ruby
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/nishidayuya/pandoc_binary_gem
- Owner: nishidayuya
- License: other
- Created: 2022-04-16T12:32:45.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-07-08T15:37:18.000Z (6 months ago)
- Last Synced: 2024-08-09T03:06:38.879Z (5 months ago)
- Topics: pandoc, ruby
- Language: Ruby
- Homepage: https://rubygems.org/gems/pandoc_binary
- Size: 2.41 GB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# PandocBinary
## Installation
Install the gem and add to the application's Gemfile by executing:
```console
$ bundle add pandoc_binary
```If bundler is not being used to manage dependencies, install the gem by executing:
```console
$ gem install pandoc_binary
```## Usage
After installation, we can use `pandoc` command:
```console
$ pandoc --from=gfm --to=html5 a.md > /tmp/a.html
```And we can use `PandocBinary.executable_path` to get `pandoc` command path:
```ruby
require "pandoc_binary"p(PandocBinary.executable_path)
#=> #
```## Contributing
Bug reports and pull requests are welcome on GitHub at https://github.com/nishidayuya/pandoc_binary_gem .