0.6.4 • Published 7 years ago

gulp-graybullet-asciidoctor v0.6.4

Weekly downloads
15
License
MIT
Repository
gitlab
Last release
7 years ago

gulp-graybullet-asciidoctor

Ruby AsciiDoctor wrapper gulp plugin.

Using

# Gemfile
source 'https://rubygems.org'

gem 'asciidoctor'

# Additional asciidoctor requires.
gem 'asciidoctor-pdf'
gem 'asciidoctor-pdf-cjk'
gem 'asciidoctor-diagram'
$ bundle install --path vendor/bundler
$ npm install --save-dev gulp gulp-graybullet-asciidoctor
// gulpfile.js
const gulp = require('gulp');
const asciidoctor = require('gulp-graybullet-asciidoctor');

// default options.
asciidoctor.options = {
  // Get attribute from package.json. (Ex: author)
  autoAttributes: 'ja',
};

gulp.task('default', () => gulp.src('index.adoc')
  .pipe(asciidoctor({ backend: 'pdf' })))
  .pipe(gulp.dest('dest'));

Options

asciidoctor({
  backend: 'pdf', // '--backend pdf'
  autoAttributes: 'ja', // Get attribute from package.json.
  args: { 'base-dir': 'book' }, // '--base-dir book'
  attributes: { doctype: 'book' }, // '--attribute doctype=book'
  filename: 'book.pdf', // Output 'book.pdf'
});

LICENSE

MIT

0.6.4

7 years ago

0.6.3

7 years ago

0.6.2

7 years ago

0.6.0

7 years ago

0.5.0

7 years ago