https://github.com/nishidayuya/pandoc_binary_gem
https://github.com/nishidayuya/pandoc_binary_gem
pandoc ruby
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/nishidayuya/pandoc_binary_gem
- Owner: nishidayuya
- License: other
- Created: 2022-04-16T12:32:45.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2025-01-27T16:18:28.000Z (5 months ago)
- Last Synced: 2025-04-12T04:12:32.288Z (3 months ago)
- Topics: pandoc, ruby
- Language: Ruby
- Homepage: https://rubygems.org/gems/pandoc_binary
- Size: 2.41 GB
- Stars: 0
- Watchers: 2
- 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 .